Skip to content

Commit 82cbec4

Browse files
committed
CS: PSR1/2
1 parent f14399c commit 82cbec4

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

Console/RemoveModulePermissionsCommand.php

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
use Illuminate\Console\Command;
66
use Modules\User\Permissions\PermissionsRemover;
7-
use Symfony\Component\Console\Input\InputOption;
87
use Symfony\Component\Console\Input\InputArgument;
98

109
class RemoveModulePermissionsCommand extends Command

Tests/Permissions/PermissionsAdderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function setUp()
2929
'slug' => 'admin',
3030
'permissions' => [
3131
'dashboard.index' => true,
32-
]
32+
],
3333
]);
3434
$this->user->create([
3535
'email' => '[email protected]',

helpers.php

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ function current_permission_value_for_roles($model, $permissionTitle, $permissio
2222
if ($value === true) {
2323
return 1;
2424
}
25+
2526
return -1;
2627
}
2728
}

0 commit comments

Comments
 (0)