Passed
Push — master ( 3115e1...cfb253 )
by CodexShaper
02:03
created
src/Dumper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 {
12 12
     use DumperTrait;
13 13
 
14
-    public function __construct(array $options = [])
14
+    public function __construct(array $options = [ ])
15 15
     {
16 16
         foreach ($options as $option => $value) {
17 17
             if (property_exists($this, $option)) {
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     /**
23 23
      * @return $this
24 24
      */
25
-    public static function create(array $options = [])
25
+    public static function create(array $options = [ ])
26 26
     {
27 27
         return new static($options);
28 28
     }
@@ -161,9 +161,9 @@  discard block
 block discarded – undo
161 161
     {
162 162
         switch (strtolower($this->getDumperClassName())) {
163 163
             case 'mysqldumper':
164
-                $ignoreTablesArgs = [];
164
+                $ignoreTablesArgs = [ ];
165 165
                 foreach ($this->ignoreTables as $tableName) {
166
-                    $ignoreTablesArgs[] = "--ignore-table={$this->dbName}.{$tableName}";
166
+                    $ignoreTablesArgs[ ] = "--ignore-table={$this->dbName}.{$tableName}";
167 167
                 }
168 168
                 $ignoreTablesArg = (count($ignoreTablesArgs) > 0) ? implode(' ', $ignoreTablesArgs) : '';
169 169
                 break;
Please login to merge, or discard this patch.