| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class Blueprint extends BaseBlueprint |
||
| 12 | { |
||
| 13 | 27 | /** |
|
| 14 | * Enable postgis on this database. |
||
| 15 | 27 | * Will create the extension in the database. |
|
| 16 | * |
||
| 17 | * @return \Illuminate\Support\Fluent |
||
| 18 | */ |
||
| 19 | public function enablePostgis() |
||
| 22 | } |
||
| 23 | |||
| 24 | 28 | /** |
|
| 25 | * Disable postgis on this database. |
||
| 26 | 28 | * WIll drop the extension in the database. |
|
| 27 | * |
||
| 28 | * @return \Illuminate\Support\Fluent |
||
| 29 | */ |
||
| 30 | public function disablePostgis() |
||
| 35 |