Browse Source

Fix more spacing.

This converts AppServiceProvider to spaces since it wasn't and removes
a few empty lines after class declarations.
Austin H 9 years ago
parent
commit
0bbe752e87
4 changed files with 21 additions and 24 deletions
  1. 20 21
      app/Providers/AppServiceProvider.php
  2. 1 1
      public/index.php
  3. 0 1
      tests/ExampleTest.php
  4. 0 1
      tests/TestCase.php

+ 20 - 21
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()
+    {
+        //
+    }
 }

+ 1 - 1
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();

+ 0 - 1
tests/ExampleTest.php

@@ -2,7 +2,6 @@
 
 class ExampleTest extends TestCase
 {
-
     /**
      * A basic functional test example.
      *

+ 0 - 1
tests/TestCase.php

@@ -2,7 +2,6 @@
 
 class TestCase extends Illuminate\Foundation\Testing\TestCase
 {
-
     /**
      * Creates the application.
      *