Completed
Push — master ( 344efb...a2d062 )
by Vojta
01:54
created
Plugin.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     /**
11 11
      * @var array Plugin dependencies
12 12
      */
13
-    public $require = ['RainLab.User'];
13
+    public $require = [ 'RainLab.User' ];
14 14
 
15 15
     /**
16 16
      * Returns information about this plugin.
Please login to merge, or discard this patch.
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -7,31 +7,31 @@
 block discarded – undo
7 7
  */
8 8
 class Plugin extends PluginBase
9 9
 {
10
-    /**
11
-     * @var array Plugin dependencies
12
-     */
13
-    public $require = ['RainLab.User'];
10
+	/**
11
+	 * @var array Plugin dependencies
12
+	 */
13
+	public $require = ['RainLab.User'];
14 14
 
15
-    /**
16
-     * Returns information about this plugin.
17
-     *
18
-     * @return array
19
-     */
20
-    public function pluginDetails()
21
-    {
22
-        return [
23
-            'name'        => 'vojtasvoboda.codelogin::lang.plugin.name',
24
-            'description' => 'vojtasvoboda.codelogin::lang.plugin.description',
25
-            'author'      => 'Vojta Svoboda',
26
-            'icon'        => 'icon-user',
27
-            'homepage'    => 'https://github.com/vojtasvoboda/oc-codelogin-plugin',
28
-        ];
29
-    }
15
+	/**
16
+	 * Returns information about this plugin.
17
+	 *
18
+	 * @return array
19
+	 */
20
+	public function pluginDetails()
21
+	{
22
+		return [
23
+			'name'        => 'vojtasvoboda.codelogin::lang.plugin.name',
24
+			'description' => 'vojtasvoboda.codelogin::lang.plugin.description',
25
+			'author'      => 'Vojta Svoboda',
26
+			'icon'        => 'icon-user',
27
+			'homepage'    => 'https://github.com/vojtasvoboda/oc-codelogin-plugin',
28
+		];
29
+	}
30 30
 
31
-    public function registerComponents()
32
-    {
33
-        return [
34
-            'VojtaSvoboda\CodeLogin\Components\CodeLogin' => 'codeLogin',
35
-        ];
36
-    }
31
+	public function registerComponents()
32
+	{
33
+		return [
34
+			'VojtaSvoboda\CodeLogin\Components\CodeLogin' => 'codeLogin',
35
+		];
36
+	}
37 37
 }
Please login to merge, or discard this patch.