Completed
Push — master ( 23ca50...fa2c41 )
by Paras
9s
created
src/NovaBarMetricsServiceProvider.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -9,37 +9,37 @@
 block discarded – undo
9 9
 
10 10
 class NovaBarMetricsServiceProvider extends ServiceProvider
11 11
 {
12
-	/**
13
-	 * Bootstrap any application services.
14
-	 */
15
-	public function boot()
16
-	{
17
-		Nova::serving(function (ServingNova $event) {
18
-			Nova::script('nova-bar-metrics', __DIR__ . '/../dist/js/nova-bar-metrics.js');
19
-			// Nova::style('nova-bar-metrics', __DIR__ . '/../dist/css/nova-bar-metrics.css');
20
-		});
12
+    /**
13
+     * Bootstrap any application services.
14
+     */
15
+    public function boot()
16
+    {
17
+        Nova::serving(function (ServingNova $event) {
18
+            Nova::script('nova-bar-metrics', __DIR__ . '/../dist/js/nova-bar-metrics.js');
19
+            // Nova::style('nova-bar-metrics', __DIR__ . '/../dist/css/nova-bar-metrics.css');
20
+        });
21 21
 
22 22
     $this->bootCommands();
23
-	}
23
+    }
24 24
 
25
-	/**
26
-	 * Register any application services.
27
-	 */
28
-	public function register()
29
-	{
30
-	}
25
+    /**
26
+     * Register any application services.
27
+     */
28
+    public function register()
29
+    {
30
+    }
31 31
 
32
-  /**
33
-   * Boot the custom commands
34
-   *
35
-   * @return void
36
-   */
37
-  private function bootCommands()
38
-  {
32
+    /**
33
+     * Boot the custom commands
34
+     *
35
+     * @return void
36
+     */
37
+    private function bootCommands()
38
+    {
39 39
     if ($this->app->runningInConsole()) {
40
-      $this->commands([
40
+        $this->commands([
41 41
         BarMetricCommand::class,
42
-      ]);
42
+        ]);
43
+    }
43 44
     }
44
-  }
45 45
 }
Please login to merge, or discard this patch.