mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
43 lines
1.3 KiB
PHP
43 lines
1.3 KiB
PHP
<?php
|
|
|
|
$vendor_path = 'vendor-bin/box/vendor/humbug/php-scoper/src/PhpParser/NodeVisitor/ClassAliasStmtAppender.php';
|
|
|
|
if (!file_exists($vendor_path)) {
|
|
die('Vendor file does not exist' . PHP_EOL);
|
|
}
|
|
|
|
$search = '/* @var FullyQualified $originalName */
|
|
|
|
$stmts[] = $this->createAliasStmt($originalName, $stmt);';
|
|
|
|
$replace = '/* @var FullyQualified $originalName */
|
|
$aliasStmt = $this->createAliasStmt($originalName, $stmt);
|
|
|
|
$stmts[] = new Node\Stmt\If_(
|
|
new Node\Expr\BooleanNot(
|
|
new Node\Expr\FuncCall(
|
|
new FullyQualified(\'class_exists\'),
|
|
[
|
|
new Node\Arg(
|
|
new Node\Expr\ClassConstFetch(
|
|
$originalName,
|
|
\'class\'
|
|
)
|
|
),
|
|
new Node\Arg(
|
|
new Node\Expr\ConstFetch(
|
|
new Node\Name(\'false\')
|
|
)
|
|
)
|
|
]
|
|
)
|
|
),
|
|
[\'stmts\' => [$aliasStmt]]
|
|
);';
|
|
|
|
$contents = file_get_contents($vendor_path);
|
|
|
|
$contents = str_replace($search, $replace, $contents);
|
|
|
|
file_put_contents($vendor_path, $contents);
|