Skip to content

Commit

Permalink
Merge pull request #7220 from weirdan/upstream-master
Browse files Browse the repository at this point in the history
  • Loading branch information
weirdan committed Dec 26, 2021
2 parents aea1cba + b664d58 commit aa7e400
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
10 changes: 5 additions & 5 deletions bin/test-with-real-projects.sh
Expand Up @@ -22,8 +22,8 @@ phpunit)
;;

collections)
git clone --depth=1 git@github.com:muglug/collections.git
cd collections
git clone --depth=1 git@github.com:psalm/endtoend-test-collections.git
cd endtoend-test-collections
composer install
"$PSALM" --monochrome --show-info=false
;;
Expand All @@ -38,12 +38,12 @@ psl)
;;

laravel)
git clone --depth=1 git@github.com:muglug/framework.git
cd framework
git clone --depth=1 git@github.com:psalm/endtoend-test-laravel.git
cd endtoend-test-laravel
composer install
"$PSALM" --monochrome
;;
*)
echo "Usage: test-with-real-projects.sh {phpunit|collections|proxymanager|laravel|psl}"
echo "Usage: test-with-real-projects.sh {phpunit|collections|laravel|psl}"
exit 1
esac
Expand Up @@ -41,7 +41,6 @@
use function in_array;
use function mt_rand;
use function reset;
use function str_contains;
use function strpos;
use function substr;

Expand Down Expand Up @@ -505,7 +504,7 @@ public static function getReturnTypeFromMappingIds(
public static function cleanContext(Context $context, int $fake_var_discriminator): void
{
foreach ($context->vars_in_scope as $var_in_scope => $_) {
if (str_contains($var_in_scope, "__fake_{$fake_var_discriminator}_")) {
if (strpos($var_in_scope, "__fake_{$fake_var_discriminator}_") !== false) {
unset($context->vars_in_scope[$var_in_scope]);
}
}
Expand Down
5 changes: 5 additions & 0 deletions vendor-bin/box/composer.json
Expand Up @@ -3,5 +3,10 @@
"prefer-stable": true,
"require": {
"humbug/box": "3.10.*"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}

0 comments on commit aa7e400

Please sign in to comment.