Completed
Push — master ( d2a922...47d29b )
by PROSPER
9s
created
app/Providers/AppServiceProvider.php 2 patches
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -23,28 +23,28 @@
 block discarded – undo
23 23
      */
24 24
     public function register()
25 25
     {
26
-		//
27
-    	// environment specific application initialization
28
-    	//
29
-    	switch( $this->app->environment() )
30
-    	{
31
-			// development env
32
-			case 'local':
33
-				if( $this->app->runningInConsole() )
34
-				{
35
-					// Some dev tools to generate some code completion helpers (some fake php files)
36
-					$this->app->register(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class);
37
-				}
38
-				// A 'in browser' debug bar
39
-				$this->app->register(\Barryvdh\Debugbar\ServiceProvider::class);
40
-				break;
41
-			// testing env
42
-			case '':
43
-				break;
44
-			// production env
45
-			case '':
46
-				break;
47
-		}
26
+        //
27
+        // environment specific application initialization
28
+        //
29
+        switch( $this->app->environment() )
30
+        {
31
+            // development env
32
+            case 'local':
33
+                if( $this->app->runningInConsole() )
34
+                {
35
+                    // Some dev tools to generate some code completion helpers (some fake php files)
36
+                    $this->app->register(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class);
37
+                }
38
+                // A 'in browser' debug bar
39
+                $this->app->register(\Barryvdh\Debugbar\ServiceProvider::class);
40
+                break;
41
+            // testing env
42
+            case '':
43
+                break;
44
+            // production env
45
+            case '':
46
+                break;
47
+        }
48 48
 
49 49
     }
50 50
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,11 +26,11 @@
 block discarded – undo
26 26
 		//
27 27
     	// environment specific application initialization
28 28
     	//
29
-    	switch( $this->app->environment() )
29
+    	switch ($this->app->environment())
30 30
     	{
31 31
 			// development env
32 32
 			case 'local':
33
-				if( $this->app->runningInConsole() )
33
+				if ($this->app->runningInConsole())
34 34
 				{
35 35
 					// Some dev tools to generate some code completion helpers (some fake php files)
36 36
 					$this->app->register(\Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class);
Please login to merge, or discard this patch.