Passed
Push — master ( a3c3b6...e70760 )
by Georgi
03:14
created
src/Providers/AdminServiceProvider.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -20,25 +20,25 @@
 block discarded – undo
20 20
 			ModuleInstallCommand::class
21 21
 	];
22 22
 	
23
-    /**
24
-     * Booting the package.
25
-     */
26
-    public function boot()
27
-    {
28
-    	$this->app->register(\JoeDixon\Translation\TranslationServiceProvider::class);
23
+	/**
24
+	 * Booting the package.
25
+	 */
26
+	public function boot()
27
+	{
28
+		$this->app->register(\JoeDixon\Translation\TranslationServiceProvider::class);
29 29
     	
30
-    	// Register migrations from installed modules
31
-    	$this->loadMigrationsFrom(ModuleManager::collect('migrations'));
30
+		// Register migrations from installed modules
31
+		$this->loadMigrationsFrom(ModuleManager::collect('migrations'));
32 32
 
33
-    	// Publish epesi configuration files
34
-    	$this->publishes([__DIR__.'/../../config' => config_path()], 'epesi.config');
35
-    }
33
+		// Publish epesi configuration files
34
+		$this->publishes([__DIR__.'/../../config' => config_path()], 'epesi.config');
35
+	}
36 36
 
37
-    /**
38
-     * Register the provider.
39
-     */
40
-    public function register()
41
-    {
42
-    	$this->commands($this->commands);
43
-    }
37
+	/**
38
+	 * Register the provider.
39
+	 */
40
+	public function register()
41
+	{
42
+		$this->commands($this->commands);
43
+	}
44 44
 }
Please login to merge, or discard this patch.