Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/laravel-coderunner
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions src/boot/laravel.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down