diff --git a/bin/laravel-coderunner b/bin/laravel-coderunner index 9bd878d..d207e90 100755 --- a/bin/laravel-coderunner +++ b/bin/laravel-coderunner @@ -9,7 +9,7 @@ define('LARAVEL_CODERUNNER_PROJECT_ROOT', LARAVEL_CODERUNNER_PROJECT_PATH . '/pu define('LARAVEL_CODERUNNER_INSTALL_LARAVEL', 'composer run-script install-laravel -d ' . str_replace('/bin', '', __DIR__)); /* - * Install or reset default larvel app + * Install or reset the default Laravel app */ if (in_array($argv[1] ?? null, ['install-default', 'reset-default'])) { echo 'Installing default laravel app.' . PHP_EOL; diff --git a/src/boot/laravel.php b/src/boot/laravel.php index da40e30..84c131b 100644 --- a/src/boot/laravel.php +++ b/src/boot/laravel.php @@ -2,9 +2,9 @@ define('LARAVEL_START', microtime(true)); -require LARAVEL_CODERUNNER_PROJECT_ROOT.'/../vendor/autoload.php'; +require LARAVEL_CODERUNNER_PROJECT_ROOT . '/../vendor/autoload.php'; -$app = require_once LARAVEL_CODERUNNER_PROJECT_ROOT.'/../bootstrap/app.php'; +$app = require_once LARAVEL_CODERUNNER_PROJECT_ROOT . '/../bootstrap/app.php'; $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);