Completed
Pull Request — master (#10)
by Mike
08:48 queued 06:53
created
src/Understand/UnderstandLaravel5/UnderstandLaravel5ServiceProvider.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -7,20 +7,20 @@  discard block
 block discarded – undo
7 7
 class UnderstandLaravel5ServiceProvider extends ServiceProvider
8 8
 {
9 9
 
10
-	/**
11
-	 * Indicates if loading of the provider is deferred.
12
-	 *
13
-	 * @var bool
14
-	 */
15
-	protected $defer = false;
16
-
17
-	/**
18
-	 * Bootstrap the application events.
19
-	 *
20
-	 * @return void
21
-	 */
22
-	public function boot()
23
-	{
10
+    /**
11
+     * Indicates if loading of the provider is deferred.
12
+     *
13
+     * @var bool
14
+     */
15
+    protected $defer = false;
16
+
17
+    /**
18
+     * Bootstrap the application events.
19
+     *
20
+     * @return void
21
+     */
22
+    public function boot()
23
+    {
24 24
         $configPath = __DIR__ . '/../../config/understand-laravel.php';
25 25
         $this->publishes([$configPath => config_path('understand-laravel.php')], 'config');
26 26
 
@@ -33,23 +33,23 @@  discard block
 block discarded – undo
33 33
         {
34 34
             $this->listenLaravelEvents();
35 35
         }
36
-	}
37
-
38
-	/**
39
-	 * Register the service provider.
40
-	 *
41
-	 * @return void
42
-	 */
43
-	public function register()
44
-	{
45
-		$this->registerConfig();
36
+    }
37
+
38
+    /**
39
+     * Register the service provider.
40
+     *
41
+     * @return void
42
+     */
43
+    public function register()
44
+    {
45
+        $this->registerConfig();
46 46
         $this->registerFieldProvider();
47 47
         $this->registerTokenProvider();
48 48
         $this->registerLogger();
49 49
         $this->registerModelEventListenerProvider();
50 50
         $this->registerExceptionEncoder();
51 51
         $this->registerExceptionLogger();
52
-	}
52
+    }
53 53
 
54 54
     /**
55 55
      * Register config
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
         {
74 74
             $fieldProvider = new FieldProvider();
75 75
 
76
-	    if (Session::getDefaultDriver()) {
76
+        if (Session::getDefaultDriver()) {
77 77
                 $fieldProvider->setSessionStore($app['session.store']);
78 78
             }
79 79
             $fieldProvider->setRouter($app['router']);
Please login to merge, or discard this patch.