Completed
Push — master ( 89a188...374811 )
by joery
04:33 queued 01:54
created
src/Http/Controllers/DscanController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,6 +9,6 @@
 block discarded – undo
9 9
 {
10 10
     public function newScan()
11 11
     {
12
-    	return view('Dscan::newScan');
12
+      return view('Dscan::newScan');
13 13
     }
14 14
 }
Please login to merge, or discard this patch.
src/DscanServiceProvider.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -13,19 +13,19 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function boot()
15 15
     {
16
-        $this->loadViewsFrom(__DIR__. '/resources/views', 'Dscan');
17
-        $this->loadMigrationsFrom(__DIR__. '/Database/migrations');
16
+        $this->loadViewsFrom(__DIR__.'/resources/views', 'Dscan');
17
+        $this->loadMigrationsFrom(__DIR__.'/Database/migrations');
18 18
 
19 19
         $this->publishes([
20 20
         __DIR__.'/resources/views' => resource_path('views/vendor/Dscan'),
21 21
     ], 'views');
22 22
 
23 23
         $this->publishes([
24
-        __DIR__ . '/Database/migrations' => $this->app->databasePath() . '/migrations'
24
+        __DIR__.'/Database/migrations' => $this->app->databasePath().'/migrations'
25 25
     ], 'migrations');
26 26
 
27 27
         $this->publishes([
28
-        __DIR__ . '/Database/seeds' => $this->app->databasePath() . '/seeds'
28
+        __DIR__.'/Database/seeds' => $this->app->databasePath().'/seeds'
29 29
     ], 'seeds');
30 30
         
31 31
     }
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      */
38 38
     public function register()
39 39
     {
40
-        include __DIR__. '/routes/web.php';
40
+        include __DIR__.'/routes/web.php';
41 41
         $this->app->make('Azak1r\Dscan\Http\Controllers\DscanController');
42 42
     }
43 43
 }
Please login to merge, or discard this patch.
src/routes/web.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 Route::get('/dscan',
4
-	'Azak1r\Dscan\Http\Controllers\DscanController@newScan');
5 4
\ No newline at end of file
5
+  'Azak1r\Dscan\Http\Controllers\DscanController@newScan');
6 6
\ No newline at end of file
Please login to merge, or discard this patch.