Skip to content

Commit

Permalink
build(deps): Update PHP-Scoper (#1380)
Browse files Browse the repository at this point in the history
  • Loading branch information
theofidry authored Jun 17, 2024
1 parent f85f21d commit dc569f0
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 42 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"composer/xdebug-handler": "^3.0.3",
"fidry/console": "^0.6.0",
"fidry/filesystem": "^1.2.1",
"humbug/php-scoper": "^0.18.6",
"humbug/php-scoper": "^0.18.14",
"justinrainbow/json-schema": "^5.2.12",
"nikic/iter": "^2.2",
"phpdocumentor/reflection-docblock": "^5.4",
Expand Down
77 changes: 39 additions & 38 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions tests/Composer/AutoloadDumperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public static function autoloadProvider(): iterable
$loader = (static function () {
// Backup the autoloaded Composer files
$existingComposerAutoloadFiles = $GLOBALS['__composer_autoload_files'] ?? [];
$existingComposerAutoloadFiles = isset($GLOBALS['__composer_autoload_files']) ? $GLOBALS['__composer_autoload_files'] : [];
// @generated by Humbug Box
Expand Down Expand Up @@ -261,7 +261,7 @@ public static function autoloadProvider(): iterable
\$loader = (static function () {
// Backup the autoloaded Composer files
\$existingComposerAutoloadFiles = \$GLOBALS['__composer_autoload_files'] ?? [];
\$existingComposerAutoloadFiles = isset(\$GLOBALS['__composer_autoload_files']) ? \$GLOBALS['__composer_autoload_files'] : [];
// @generated by Humbug Box
Expand Down Expand Up @@ -361,7 +361,7 @@ public static function autoloadProvider(): iterable
namespace {
$loader = (static function () {
// Backup the autoloaded Composer files
$existingComposerAutoloadFiles = $GLOBALS['__composer_autoload_files'] ?? [];
$existingComposerAutoloadFiles = isset($GLOBALS['__composer_autoload_files']) ? $GLOBALS['__composer_autoload_files'] : [];
// @generated by Humbug Box
Expand Down

0 comments on commit dc569f0

Please sign in to comment.