| 1 | <?php namespace Anomaly\Streams\Platform\Database\Migration; |
||
| 12 | class MigrationRepository extends DatabaseMigrationRepository |
||
| 13 | { |
||
| 14 | |||
| 15 | /** |
||
| 16 | * The migrator instance. |
||
| 17 | * |
||
| 18 | * @var Migrator |
||
| 19 | */ |
||
| 20 | protected $migrator = null; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Get ran migrations. |
||
| 24 | * |
||
| 25 | * @return array |
||
| 26 | */ |
||
| 27 | public function getRan($namespace = null) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Set the migrator. |
||
| 42 | * |
||
| 43 | * @param Migrator $migrator |
||
| 44 | * @return $this |
||
| 45 | */ |
||
| 46 | public function setMigrator(Migrator $migrator) |
||
| 52 | } |
||
| 53 |