Completed
Push — master ( 3b8bf5...2c9eef )
by Pascal
12s
created
Plugin.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
     /**
11 11
      * @var array Plugin dependencies
12 12
      */
13
-    public $require = ['RainLab.Blog'];
13
+    public $require = [ 'RainLab.Blog' ];
14 14
 
15 15
     /**
16 16
      * Returns information about this plugin.
@@ -47,13 +47,13 @@  discard block
 block discarded – undo
47 47
     {
48 48
         // Check the translate plugin is installed
49 49
         if (class_exists('RainLab\Translate\Behaviors\TranslatableModel')) {
50
-            return [];
50
+            return [ ];
51 51
         }
52 52
 
53 53
         return [
54 54
             'filters' => [
55
-                '_'  => ['Lang', 'get'],
56
-                '__' => ['Lang', 'choice']
55
+                '_'  => [ 'Lang', 'get' ],
56
+                '__' => [ 'Lang', 'choice' ]
57 57
             ]
58 58
         ];
59 59
     }
Please login to merge, or discard this patch.