Skip to content

Commit 7538d28

Browse files
authored
Merge pull request #1 from jpcaparas/feature/spelling-correction
Feature/spelling correction
2 parents fd5b578 + e76f057 commit 7538d28

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bin/laravel-coderunner

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ define('LARAVEL_CODERUNNER_PROJECT_ROOT', LARAVEL_CODERUNNER_PROJECT_PATH . '/pu
99
define('LARAVEL_CODERUNNER_INSTALL_LARAVEL', 'composer run-script install-laravel -d ' . str_replace('/bin', '', __DIR__));
1010

1111
/*
12-
* Install or reset default larvel app
12+
* Install or reset the default Laravel app
1313
*/
1414
if (in_array($argv[1] ?? null, ['install-default', 'reset-default'])) {
1515
echo 'Installing default laravel app.' . PHP_EOL;

src/boot/laravel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
define('LARAVEL_START', microtime(true));
44

5-
require LARAVEL_CODERUNNER_PROJECT_ROOT.'/../vendor/autoload.php';
5+
require LARAVEL_CODERUNNER_PROJECT_ROOT . '/../vendor/autoload.php';
66

7-
$app = require_once LARAVEL_CODERUNNER_PROJECT_ROOT.'/../bootstrap/app.php';
7+
$app = require_once LARAVEL_CODERUNNER_PROJECT_ROOT . '/../bootstrap/app.php';
88

99
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
1010

0 commit comments

Comments
 (0)