We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | // establish the table names |
||
| 17 | $model_has_roles = config('permission.table_names.model_has_roles'); |
||
| 18 | $model_has_permissions = config('permission.table_names.model_has_permissions'); |
||
| 19 | |||
| 20 | // replace the BackpackUser model with User |
||
| 21 | $this->replaceModels($model_has_roles); |
||
| 22 | $this->replaceModels($model_has_permissions); |
||
| 23 | } |
||
| 24 | |||
| 51 |