Passed
Branch master (3a11a5)
by Adam
06:46 queued 03:28
created
src/BestServedCold/LaravelZendSearch/Lucene/Search/AbstractType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,9 +6,9 @@
 block discarded – undo
6 6
 {
7 7
     protected $string;
8 8
     protected $field = false;
9
-    protected $Options = [];
9
+    protected $Options = [ ];
10 10
 
11
-    public function __construct($string, $field = false, $options = [])
11
+    public function __construct($string, $field = false, $options = [ ])
12 12
     {
13 13
         $this->string  = $string;
14 14
         $this->field   = $field;
Please login to merge, or discard this patch.
src/BestServedCold/LaravelZendSearch/Laravel/Console/Rebuild.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,13 +18,13 @@
 block discarded – undo
18 18
     protected $name = 'search:rebuild';
19 19
     protected $description = 'Rebuild the search index';
20 20
 
21
-    private $models = [];
21
+    private $models = [ ];
22 22
 
23 23
     public function getModels()
24 24
     {
25 25
         foreach (get_declared_classes() as $class) {
26 26
             if (is_subclass_of($class, Model::class) && method_exists($class, 'searchFields')) {
27
-                $this->models[] = $class;
27
+                $this->models[ ] = $class;
28 28
             }
29 29
         }
30 30
     }
Please login to merge, or discard this patch.