| 1 | <?php | ||
| 8 | class Migration extends NamingAbstract | ||
| 9 | { | ||
| 10 | protected $fileName; | ||
| 11 | |||
| 12 | /** | ||
| 13 | * Migration constructor. | ||
| 14 | * @param string $entity | ||
| 15 | */ | ||
| 16 | public function __construct(string $entity) | ||
| 22 | |||
| 23 | /** | ||
| 24 | * @return string | ||
| 25 | */ | ||
| 26 | public function getClassName(): string | ||
| 30 | |||
| 31 | /** | ||
| 32 | * @return string | ||
| 33 | */ | ||
| 34 | public function getTableName(): string | ||
| 38 | |||
| 39 | /** | ||
| 40 | * @return void | ||
| 41 | */ | ||
| 42 | public function setFileName(): void | ||
| 46 | |||
| 47 | /** | ||
| 48 | * @return string | ||
| 49 | */ | ||
| 50 | public function getFileName(): string | ||
| 54 | |||
| 55 | /** | ||
| 56 | * @return string | ||
| 57 | */ | ||
| 58 | public function getPath(): string | ||
| 62 | |||
| 63 | /** | ||
| 64 | * @return string | ||
| 65 | */ | ||
| 66 | public function getStub(): string | ||
| 70 | } | ||
| 71 |