We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89dce89 commit ec7fa68Copy full SHA for ec7fa68
src/ServiceContainer/LaravelBooter.php
@@ -63,7 +63,7 @@ public function boot()
63
{
64
$bootstrapPath = $this->basePath() . '/bootstrap/app.php';
65
66
- $this->guardAgainstMissingBootstrapPath($bootstrapPath);
+ $this->assertBootstrapFileExists($bootstrapPath);
67
68
$app = require $bootstrapPath;
69
@@ -80,7 +80,7 @@ public function boot()
80
* @param string $bootstrapPath
81
* @throws RuntimeException
82
*/
83
- private function guardAgainstMissingBootstrapPath($bootstrapPath)
+ private function assertBootstrapFileExists($bootstrapPath)
84
85
if ( ! file_exists($bootstrapPath)) {
86
throw new RuntimeException('Could not locate the path to the Laravel bootstrap file.');
0 commit comments