| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | abstract class Migration extends IlluminateMigration |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * The database schema. |
||
| 24 | * |
||
| 25 | * @var \Illuminate\Database\Schema\Builder |
||
| 26 | */ |
||
| 27 | protected $schema; |
||
| 28 | |||
| 29 | public function __construct() |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Get the migration connection name. |
||
| 36 | */ |
||
| 37 | public function getConnection(): string | null |
||
| 42 |