Skip to content

Commit

Permalink
PHP CS Fix files
Browse files Browse the repository at this point in the history
  • Loading branch information
vinicius73 committed May 29, 2018
1 parent 56ab11e commit 7ec9ba0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions src/Defender/Commands/MakePermission.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,11 @@ class MakePermission extends Command
* @param RoleRepository $roleRepository
* @param UserRepository $userRepository
*/
public function __construct(PermissionRepository $permissionRepository,
public function __construct(
PermissionRepository $permissionRepository,
RoleRepository $roleRepository,
UserRepository $userRepository)
{
UserRepository $userRepository
) {
$this->permissionRepository = $permissionRepository;
$this->roleRepository = $roleRepository;
$this->userRepository = $userRepository;
Expand Down
2 changes: 1 addition & 1 deletion tests/Defender/DefenderServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public function testShouldNotLoadHelpers()
*/
public function testShouldPublishConfigAndMigrations()
{
$this->markTestSkipped( 'remake this test' );
$this->markTestSkipped('remake this test');
return

$this->artisan('vendor:publish');
Expand Down

0 comments on commit 7ec9ba0

Please sign in to comment.