()
| 192 | } |
| 193 | |
| 194 | public function toArray(): array |
| 195 | { |
| 196 | return [ |
| 197 | 'migration' => $this->migration, |
| 198 | 'relativePath' => $this->relativePath, |
| 199 | 'migrationName' => $this->migrationName, |
| 200 | 'datePrefix' => $this->datePrefix, |
| 201 | 'fullPrefix' => $this->fullPrefix, |
| 202 | 'createdTables' => array_unique($this->createdTables), |
| 203 | 'changedTables' => array_unique($this->changedTables), |
| 204 | ]; |
| 205 | } |
| 206 | } |
no outgoing calls
no test coverage detected