Move all dev tools from www composer to outside master composer

This commit is contained in:
Clemens Schwaighofer
2023-02-13 16:36:51 +09:00
parent f508b607a6
commit c7cc3c2938
1141 changed files with 8540 additions and 8275 deletions

View File

@@ -0,0 +1,24 @@
<?php declare(strict_types=1);
/*
* This file is part of sebastian/code-unit.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SebastianBergmann\CodeUnit;
/**
* @psalm-immutable
*/
final class TraitMethodUnit extends CodeUnit
{
/**
* @psalm-assert-if-true TraitMethodUnit $this
*/
public function isTraitMethod(): bool
{
return true;
}
}