@@ -86,22 +86,22 @@ |
||
| 86 | 86 | { |
| 87 | 87 | $options = $this->option(); |
| 88 | 88 | switch ($options) { |
| 89 | - case ($options['seeds'] === true) && ($options['migrations'] === true): |
|
| 90 | - if (!$this->upload('migrations')) { |
|
| 91 | - return false; |
|
| 92 | - } |
|
| 89 | + case ($options['seeds'] === true) && ($options['migrations'] === true): |
|
| 90 | + if (!$this->upload('migrations')) { |
|
| 91 | + return false; |
|
| 92 | + } |
|
| 93 | 93 | |
| 94 | - return $this->upload('seeds'); |
|
| 94 | + return $this->upload('seeds'); |
|
| 95 | 95 | |
| 96 | - case $options['migrations'] === true: |
|
| 97 | - $this->commandOptions = 'migrations'; |
|
| 96 | + case $options['migrations'] === true: |
|
| 97 | + $this->commandOptions = 'migrations'; |
|
| 98 | 98 | |
| 99 | - return $this->upload('migrations'); |
|
| 99 | + return $this->upload('migrations'); |
|
| 100 | 100 | |
| 101 | - case $options['seeds'] === true: |
|
| 102 | - $this->commandOptions = 'seeds'; |
|
| 101 | + case $options['seeds'] === true: |
|
| 102 | + $this->commandOptions = 'seeds'; |
|
| 103 | 103 | |
| 104 | - return $this->upload('seeds'); |
|
| 104 | + return $this->upload('seeds'); |
|
| 105 | 105 | } |
| 106 | 106 | } |
| 107 | 107 | |