Completed
Push — master ( 0b265b...8745df )
by Sherif
02:46
created
src/ApiSkeletonServiceProvider.php 1 patch
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -6,35 +6,35 @@
 block discarded – undo
6 6
 
7 7
 class ApiSkeletonServiceProvider extends ServiceProvider
8 8
 {
9
-    /**
10
-     * Perform post-registration booting of services.
11
-     *
12
-     * @return void
13
-     */
14
-    public function boot()
15
-    {
16
-        $this->publishes([
17
-            __DIR__.'/Modules'                               => app_path('Modules'),
18
-            __DIR__.'/../lang'                               => base_path('resources/lang'),
19
-            __DIR__.'/../files/Handler.php'                  => app_path('Exceptions/Handler.php'),
20
-            __DIR__.'/../files/AuthServiceProvider.php'      => app_path('Providers/AuthServiceProvider.php'),
21
-            __DIR__.'/../files/BroadcastServiceProvider.php' => app_path('Providers/BroadcastServiceProvider.php'),
22
-            __DIR__.'/../files/Kernel.php'                   => app_path('Console/Kernel.php'),
23
-        ]);
9
+	/**
10
+	 * Perform post-registration booting of services.
11
+	 *
12
+	 * @return void
13
+	 */
14
+	public function boot()
15
+	{
16
+		$this->publishes([
17
+			__DIR__.'/Modules'                               => app_path('Modules'),
18
+			__DIR__.'/../lang'                               => base_path('resources/lang'),
19
+			__DIR__.'/../files/Handler.php'                  => app_path('Exceptions/Handler.php'),
20
+			__DIR__.'/../files/AuthServiceProvider.php'      => app_path('Providers/AuthServiceProvider.php'),
21
+			__DIR__.'/../files/BroadcastServiceProvider.php' => app_path('Providers/BroadcastServiceProvider.php'),
22
+			__DIR__.'/../files/Kernel.php'                   => app_path('Console/Kernel.php'),
23
+		]);
24 24
 
25
-        $this->publishes([
26
-            __DIR__.'/../config/skeleton.php' => config_path('skeleton.php'),
27
-            __DIR__.'/../files/auth.php'      => config_path('auth.php'),
28
-        ], 'config');
29
-    }
25
+		$this->publishes([
26
+			__DIR__.'/../config/skeleton.php' => config_path('skeleton.php'),
27
+			__DIR__.'/../files/auth.php'      => config_path('auth.php'),
28
+		], 'config');
29
+	}
30 30
 
31
-    /**
32
-     * Register any package services.
33
-     *
34
-     * @return void
35
-     */
36
-    public function register()
37
-    {
38
-        //
39
-    }
31
+	/**
32
+	 * Register any package services.
33
+	 *
34
+	 * @return void
35
+	 */
36
+	public function register()
37
+	{
38
+		//
39
+	}
40 40
 }
41 41
\ No newline at end of file
Please login to merge, or discard this patch.