@@ -11,7 +11,7 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -143,9 +143,9 @@ discard block |
||
| 143 | 143 | { |
| 144 | 144 | switch (strtolower($this->getClassName())) { |
| 145 | 145 | case 'mysqldumper': |
| 146 | - $ignoreTablesArgs = []; |
|
| 146 | + $ignoreTablesArgs = [ ]; |
|
| 147 | 147 | foreach ($this->ignoreTables as $tableName) { |
| 148 | - $ignoreTablesArgs[] = "--ignore-table={$this->dbName}.{$tableName}"; |
|
| 148 | + $ignoreTablesArgs[ ] = "--ignore-table={$this->dbName}.{$tableName}"; |
|
| 149 | 149 | } |
| 150 | 150 | $ignoreTablesArg = (count($ignoreTablesArgs) > 0) ? implode(' ', $ignoreTablesArgs) : ''; |
| 151 | 151 | break; |