diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php index 5790de5a..69b82e38 100644 --- a/app/Providers/AppServiceProvider.php +++ b/app/Providers/AppServiceProvider.php @@ -2,26 +2,25 @@ use Illuminate\Support\ServiceProvider; -class AppServiceProvider extends ServiceProvider { - - /** - * Bootstrap any application services. - * - * @return void - */ - public function boot() - { - // - } - - /** - * Register any application services. - * - * @return void - */ - public function register() - { - // - } +class AppServiceProvider extends ServiceProvider +{ + /** + * Bootstrap any application services. + * + * @return void + */ + public function boot() + { + // + } + /** + * Register any application services. + * + * @return void + */ + public function register() + { + // + } } diff --git a/public/index.php b/public/index.php index 37f19c23..6778d8aa 100644 --- a/public/index.php +++ b/public/index.php @@ -49,7 +49,7 @@ $kernel = $app->make('Illuminate\Contracts\Http\Kernel'); $response = $kernel->handle( - $request = Illuminate\Http\Request::capture() + $request = Illuminate\Http\Request::capture() ); $response->send(); diff --git a/tests/ExampleTest.php b/tests/ExampleTest.php index 3dc3061f..c78111bc 100644 --- a/tests/ExampleTest.php +++ b/tests/ExampleTest.php @@ -2,7 +2,6 @@ class ExampleTest extends TestCase { - /** * A basic functional test example. * diff --git a/tests/TestCase.php b/tests/TestCase.php index cfbb1529..069f0b84 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -2,7 +2,6 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase { - /** * Creates the application. *