File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/rector/rector-laravel/src/Rector/ClassMethod/AddParentBootToModelClassMethodRector.php
Back
<?php declare (strict_types=1); namespace Rector\Laravel\Rector\ClassMethod; use PhpParser\Node; use PhpParser\Node\Stmt\ClassLike; use PhpParser\Node\Stmt\ClassMethod; use PhpParser\Node\Stmt\Expression; use PHPStan\Type\ObjectType; use Rector\Core\Rector\AbstractRector; use Rector\Nette\NodeAnalyzer\StaticCallAnalyzer; use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample; use Symplify\RuleDocGenerator\ValueObject\RuleDefinition; /** * @changelog https://laracasts.com/discuss/channels/laravel/laravel-57-upgrade-observer-problem * * @see \Rector\Laravel\Tests\Rector\ClassMethod\AddParentBootToModelClassMethodRector\AddParentBootToModelClassMethodRectorTest */ final class AddParentBootToModelClassMethodRector extends AbstractRector { /** * @var string */ private const BOOT = 'boot'; /** * @readonly * @var \Rector\Nette\NodeAnalyzer\StaticCallAnalyzer */ private $staticCallAnalyzer; public function __construct(StaticCallAnalyzer $staticCallAnalyzer) { $this->staticCallAnalyzer = $staticCallAnalyzer; } public function getRuleDefinition() : RuleDefinition { return new RuleDefinition('Add parent::boot(); call to boot() class method in child of Illuminate\\Database\\Eloquent\\Model', [new CodeSample(<<<'CODE_SAMPLE' use Illuminate\Database\Eloquent\Model; class Product extends Model { public function boot() { } } CODE_SAMPLE , <<<'CODE_SAMPLE' use Illuminate\Database\Eloquent\Model; class Product extends Model { public function boot() { parent::boot(); } } CODE_SAMPLE )]); } /** * @return array<class-string<Node>> */ public function getNodeTypes() : array { return [ClassMethod::class]; } /** * @param ClassMethod $node */ public function refactor(Node $node) : ?Node { $classLike = $this->betterNodeFinder->findParentType($node, ClassLike::class); if (!$classLike instanceof ClassLike) { return null; } if (!$this->isObjectType($classLike, new ObjectType('Illuminate\\Database\\Eloquent\\Model'))) { return null; } if (!$this->isName($node->name, self::BOOT)) { return null; } foreach ((array) $node->stmts as $key => $classMethodStmt) { if ($classMethodStmt instanceof Expression) { $classMethodStmt = $classMethodStmt->expr; } // is in the 1st position? → only correct place // @see https://laracasts.com/discuss/channels/laravel/laravel-57-upgrade-observer-problem?page=0#reply=454409 if (!$this->staticCallAnalyzer->isParentCallNamed($classMethodStmt, self::BOOT)) { continue; } if ($key === 0) { return null; } // wrong location → remove it unset($node->stmts[$key]); } // missing, we need to add one $staticCall = $this->nodeFactory->createStaticCall('parent', self::BOOT); $parentStaticCallExpression = new Expression($staticCall); $node->stmts = \array_merge([$parentStaticCallExpression], (array) $node->stmts); return $node; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings