From 0bbe752e87f0361ad9e401804ca3afae7cb4c774 Mon Sep 17 00:00:00 2001 From: Austin H Date: Fri, 20 Mar 2015 20:30:50 -0700 Subject: [PATCH] Fix more spacing. This converts AppServiceProvider to spaces since it wasn't and removes a few empty lines after class declarations. --- app/Providers/AppServiceProvider.php | 41 ++++++++++++++-------------- public/index.php | 2 +- tests/ExampleTest.php | 1 - tests/TestCase.php | 1 - 4 files changed, 21 insertions(+), 24 deletions(-) diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php index 5790de5a9..69b82e385 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 37f19c23a..6778d8aa1 100644 --- a/public/index.php +++ b/public/index.php @@ -49,7 +49,7 @@ $app = require_once __DIR__.'/../bootstrap/app.php'; $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 3dc3061fe..c78111bc9 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 cfbb1529b..069f0b84b 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -2,7 +2,6 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase { - /** * Creates the application. *