kkszymanowski/traitor 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

kkszymanowski/traitor

最新稳定版本:1.1.0

Composer 安装命令:

composer require kkszymanowski/traitor

包简介

Add a trait use statement to existing PHP class

README 文档

README

StyleCI Build Status Latest Stable Version License

A PHP package for automatically adding a trait use statement to a given class.

Installation

Via composer:

composer require kkszymanowski/traitor

Usage

  • Basic usage:
use Traitor\Traitor;

Traitor::addTrait(FooTrait::class)->toClass(FooClass:class);
  • Add multiple traits:
use Traitor\Traitor;

Traitor::addTraits([
    FooTrait::class,
    BarTrait::class,
    BazTrait::class
])->toClass(FooClass::class);

//or

Traitor::addTrait(FooTrait::class)
       ->addTrait(BarTrait::class)
       ->addTrait(BazTrait::class)
       ->toClass(FooClass::class);
  • Check if class already uses trait:
use Traitor\Traitor;

$alreadyUses = Traitor::alreadyUses(FooClass::class, BarTrait::class);
  • Only generate output without changing files:
use Traitor\Handlers\AbstractTreeHandler;

$handler = new AbstractTreeHandler(file($originalFilePath), FooTrait::class, BarClass::class);

$newContent = $handler->handle()->toString();

Note, that AbstractTreeHandler accepts input file as an array of lines, such as one produced from file() call.

Behavior

Adding a new trait use statement does not change in any way formatting of your file(or at least it shouldn't).

If the trait is not present in the use section below the namespace declaration, it will be also added there, below any existing imports.

If it's not present in the use section in the class body, it will be added there above first existing use statement, on it's own line:

use Bar\PreviouslyExistingTrait;
use Baz\NewlyAddedTrait; // Here

class Foo
{
    use NewlyAddedTrait; // And here
    use PreviouslyExistingTrait;
}

统计信息

  • 总下载量: 4.96M
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 130
  • 点击次数: 1
  • 依赖项目数: 17
  • 推荐数: 0

GitHub 信息

  • Stars: 130
  • Watchers: 2
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固