Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
makss committed Oct 31, 2023
1 parent 7ef93cb commit caef5b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/app/Http/Controllers/PermissionCrudController.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

class PermissionCrudController extends CrudController
{
protected $role_model;
protected $permission_model;
protected string $role_model;
protected string $permission_model;

use \Backpack\CRUD\app\Http\Controllers\Operations\ListOperation;
use \Backpack\CRUD\app\Http\Controllers\Operations\CreateOperation;
Expand Down
4 changes: 2 additions & 2 deletions src/app/Http/Controllers/RoleCrudController.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

class RoleCrudController extends CrudController
{
protected $role_model;
protected $permission_model;
protected string $role_model;
protected string $permission_model;

use \Backpack\CRUD\app\Http\Controllers\Operations\ListOperation;
use \Backpack\CRUD\app\Http\Controllers\Operations\CreateOperation;
Expand Down

0 comments on commit caef5b8

Please sign in to comment.