| 1 | <?php |
||
| 7 | class Notifier |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Notification tag. |
||
| 11 | * |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $tag = 'arrilot_new_migration'; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Show notification that migration has been created. |
||
| 18 | * |
||
| 19 | * @param $migration |
||
| 20 | */ |
||
| 21 | public function newMigration($migration) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Delete notification from the previous migration. |
||
| 35 | */ |
||
| 36 | public function deleteNotificationFromPreviousMigration() |
||
| 42 | } |
||
| 43 |