summaryrefslogtreecommitdiff
path: root/vendor/bin
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/bin')
-rwxr-xr-x[-rw-r--r--]vendor/bin/phpstan5
-rwxr-xr-x[-rw-r--r--]vendor/bin/phpstan.phar5
2 files changed, 4 insertions, 6 deletions
diff --git a/vendor/bin/phpstan b/vendor/bin/phpstan
index 20451337e..d76c0be76 100644..100755
--- a/vendor/bin/phpstan
+++ b/vendor/bin/phpstan
@@ -112,9 +112,8 @@ if (PHP_VERSION_ID < 80000) {
(function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true))
|| (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
) {
- include("phpvfscomposer://" . __DIR__ . '/..'.'/phpstan/phpstan/phpstan');
- exit(0);
+ return include("phpvfscomposer://" . __DIR__ . '/..'.'/phpstan/phpstan/phpstan');
}
}
-include __DIR__ . '/..'.'/phpstan/phpstan/phpstan';
+return include __DIR__ . '/..'.'/phpstan/phpstan/phpstan';
diff --git a/vendor/bin/phpstan.phar b/vendor/bin/phpstan.phar
index caa3e24f8..fecf96f69 100644..100755
--- a/vendor/bin/phpstan.phar
+++ b/vendor/bin/phpstan.phar
@@ -112,9 +112,8 @@ if (PHP_VERSION_ID < 80000) {
(function_exists('stream_get_wrappers') && in_array('phpvfscomposer', stream_get_wrappers(), true))
|| (function_exists('stream_wrapper_register') && stream_wrapper_register('phpvfscomposer', 'Composer\BinProxyWrapper'))
) {
- include("phpvfscomposer://" . __DIR__ . '/..'.'/phpstan/phpstan/phpstan.phar');
- exit(0);
+ return include("phpvfscomposer://" . __DIR__ . '/..'.'/phpstan/phpstan/phpstan.phar');
}
}
-include __DIR__ . '/..'.'/phpstan/phpstan/phpstan.phar';
+return include __DIR__ . '/..'.'/phpstan/phpstan/phpstan.phar';