diff --git a/composer.json b/composer.json index 06dc36e4..5cae9dd7 100755 --- a/composer.json +++ b/composer.json @@ -36,7 +36,7 @@ "laravel-zero/foundation": "dev-main", "league/flysystem": "^3.27.0", "nunomaduro/collision": "^8.1.1", - "nunomaduro/laravel-console-summary": "^1.11.1", + "nunomaduro/laravel-console-summary": "^1.12.1", "nunomaduro/laravel-console-task": "^1.9", "nunomaduro/laravel-desktop-notifier": "^2.8.1", "psr/log": "^3.0", @@ -61,7 +61,7 @@ "illuminate/view": "^11.5.0", "laminas/laminas-text": "^2.11", "laravel-zero/phar-updater": "^1.4", - "laravel/pint": "^1.15.1", + "laravel/pint": "^1.15.2", "nunomaduro/laravel-console-dusk": "^1.13", "nunomaduro/laravel-console-menu": "^3.5", "pestphp/pest": "^2.34.7", diff --git a/src/Bootstrap/BaseLoadConfiguration.php b/src/Bootstrap/BaseLoadConfiguration.php index 7789ffe6..e3bbb307 100644 --- a/src/Bootstrap/BaseLoadConfiguration.php +++ b/src/Bootstrap/BaseLoadConfiguration.php @@ -13,9 +13,9 @@ namespace LaravelZero\Framework\Bootstrap; -use ReflectionClass; use Illuminate\Contracts\Foundation\Application as ApplicationContract; use Illuminate\Foundation\Bootstrap\LoadConfiguration; +use ReflectionClass; use Symfony\Component\Finder\Finder; use function basename; @@ -64,10 +64,9 @@ protected function getBaseConfiguration() $dir = dirname($declaringClass->getFilename()); foreach (Finder::create()->files()->name('*.php')->in($dir.'/../../../../config') as $file) { - $config[basename($file->getRelativePathname(), '.php')] = require ($file->getPath() . '/' . $file->getFilename()); + $config[basename($file->getRelativePathname(), '.php')] = require $file->getPath().'/'.$file->getFilename(); } return $config; } } -