diff --git a/src/Illuminate/Support/ServiceProvider.php b/src/Illuminate/Support/ServiceProvider.php index a4d8cf66b6dd..c8c446cbe18f 100755 --- a/src/Illuminate/Support/ServiceProvider.php +++ b/src/Illuminate/Support/ServiceProvider.php @@ -110,7 +110,7 @@ protected function loadMigrationsFrom($paths) */ protected function loadRoutesFrom($path) { - if (!$this->app->routesAreCached()) { + if (! $this->app->routesAreCached()) { require $path; } }