1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 12:24:49 +01:00
psalm/scoper.inc.php

122 lines
3.9 KiB
PHP
Raw Normal View History

2018-03-11 17:35:46 +01:00
<?php
return [
'patchers' => [
function ($filePath, $prefix, $contents) {
//
// PHP-Parser patch
//
if ($filePath === 'vendor/nikic/php-parser/lib/PhpParser/NodeAbstract.php') {
2018-03-11 17:35:46 +01:00
$length = 15 + strlen($prefix) + 1;
return preg_replace(
'%strpos\((.+?)\) \+ 15%',
sprintf('strpos($1) + %d', $length),
$contents
);
}
return $contents;
},
2018-05-05 02:43:43 +02:00
function ($filePath, $prefix, $contents) {
return str_replace(
'\\'.$prefix.'\Composer\Autoload\ClassLoader',
'\Composer\Autoload\ClassLoader',
$contents
);
},
2018-03-11 17:35:46 +01:00
function ($filePath, $prefix, $contents) {
if ($filePath === 'src/Psalm/Config.php') {
2018-03-11 17:35:46 +01:00
return str_replace(
$prefix . '\Composer\Autoload\ClassLoader',
'Composer\Autoload\ClassLoader',
$contents
);
}
return $contents;
},
2018-03-18 15:52:54 +01:00
function ($filePath, $prefix, $contents) {
if (strpos($filePath, 'src/Psalm') === 0) {
2018-03-18 15:52:54 +01:00
return str_replace(
[' \\Psalm\\', ' \\PhpParser\\'],
[' \\' . $prefix . '\\Psalm\\', ' \\' . $prefix . '\\PhpParser\\'],
$contents
);
}
return $contents;
},
function ($filePath, $prefix, $contents) {
if (strpos($filePath, 'vendor/openlss') === 0) {
2018-03-18 15:52:54 +01:00
return str_replace(
$prefix . '\\DomDocument',
'DomDocument',
$contents
);
}
return $contents;
},
2018-03-11 17:35:46 +01:00
function ($filePath, $prefix, $contents) {
if ($filePath === 'src/Psalm/PropertyMap.php'
|| $filePath === 'src/Psalm/CallMap.php'
|| $filePath === 'src/Psalm/Stubs/CoreGenericFunctions.php'
|| $filePath === 'src/Psalm/Stubs/CoreGenericClasses.php'
) {
2018-03-18 15:52:54 +01:00
$contents = str_replace(
['namespace ' . $prefix . ';', $prefix . '\\\\', $prefix . '\\'],
2018-03-11 17:35:46 +01:00
'',
$contents
);
2018-03-18 15:52:54 +01:00
$contents = str_replace(
['\'phpparser\\\\', 'PhpParser\\\\'],
['\'' . strtolower($prefix) . '\\\\phpparser\\\\', $prefix . '\\\\PhpParser\\\\'],
$contents
);
return str_replace('Psalm\\\\', $prefix . '\\\\Psalm\\\\', $contents);
2018-03-11 17:35:46 +01:00
}
2018-03-15 23:37:56 +01:00
return $contents;
},
function ($filePath, $prefix, $contents) {
if ($filePath === 'src/Psalm/Checker/Statements/Expression/Call/MethodCallChecker.php') {
2018-03-15 23:37:56 +01:00
return str_replace(
'case \'Psalm\\\\',
'case \'' . $prefix . '\\\\Psalm\\\\',
$contents
);
}
return $contents;
},
function ($filePath, $prefix, $contents) {
if ($filePath === 'src/Psalm/Type.php') {
2018-03-15 23:37:56 +01:00
return str_replace(
'get_class($type) === \'Psalm\\\\',
'get_class($type) === \'' . $prefix . '\\\\Psalm\\\\',
$contents
);
}
return $contents;
},
function ($filePath, $prefix, $contents) {
if ($filePath === 'src/psalm.php') {
return str_replace(
'\\' . $prefix . '\\PSALM_VERSION',
'PSALM_VERSION',
$contents
);
}
2018-03-11 17:35:46 +01:00
return $contents;
},
],
2018-05-05 02:43:43 +02:00
'whitelist' => [
\Composer\Autoload\ClassLoader::class,
]
2018-03-11 17:35:46 +01:00
];