1 | <?php namespace Arcanesoft\Tracker\Bases; |
||
11 | abstract class Migration extends BaseMigration |
||
12 | { |
||
13 | /* ----------------------------------------------------------------- |
||
14 | | Constructor |
||
15 | | ----------------------------------------------------------------- |
||
16 | */ |
||
17 | |||
18 | /** |
||
19 | * Migration constructor. |
||
20 | */ |
||
21 | public function __construct() |
||
26 | |||
27 | /* ----------------------------------------------------------------- |
||
28 | | Other Methods |
||
29 | | ----------------------------------------------------------------- |
||
30 | */ |
||
31 | |||
32 | /** |
||
33 | * Get a value from config. |
||
34 | * |
||
35 | * @param string $key |
||
36 | * @param mixed|null $default |
||
37 | * |
||
38 | * @return mixed |
||
39 | */ |
||
40 | protected function getConfig($key, $default = null) |
||
44 | } |
||
45 |