| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 38 | protected static function getFacadeAccessor() |
||
| 39 | { |
||
| 40 | // Create the schema builder |
||
| 41 | $schema = parent::getFacadeAccessor(); |
||
| 42 | |||
| 43 | // Use the custom blueprint |
||
| 44 | $schema->blueprintResolver(function($table, $callback) { |
||
| 45 | return new Blueprint($table, $callback); |
||
| 46 | }); |
||
| 47 | |||
| 48 | // Return the schema |
||
| 49 | return $schema; |
||
| 50 | } |
||
| 52 |