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.
src/Console/BarMetricCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     protected function getStub()
50 50
     {
51
-        return __DIR__.'/stubs/barmetric.stub';
51
+        return __DIR__ . '/stubs/barmetric.stub';
52 52
     }
53 53
 
54 54
     /**
@@ -59,6 +59,6 @@  discard block
 block discarded – undo
59 59
      */
60 60
     protected function getDefaultNamespace($rootNamespace)
61 61
     {
62
-        return $rootNamespace.'\Nova\Metrics';
62
+        return $rootNamespace . '\Nova\Metrics';
63 63
     }
64 64
 }
Please login to merge, or discard this patch.