Skip to content

Commit

Permalink
Merge pull request #4 from Vivify-Ideas/compatibility
Browse files Browse the repository at this point in the history
Compatibility
  • Loading branch information
Maidomax committed Apr 30, 2014
2 parents 2eaa047 + 45fb018 commit 387345c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
],
"require-dev": {
"phpunit/phpunit": "3.7.*",
"orchestra/testbench": "2.0.*"
"orchestra/testbench": "2.1.*"
},
"require": {
"php": ">=5.3.0",
"illuminate/support": "4.0.x"
"illuminate/support": "4.1.x"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion src/VivifyIdeas/Acl/Commands/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public function fire()
});
}

$this->info('ACL installed successful!');
$this->info('ACL was installed successfully!');
}

private function createConfig()
Expand Down
4 changes: 2 additions & 2 deletions src/VivifyIdeas/Acl/Commands/ResetCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class ResetCommand extends Command
*
* @var string
*/
protected $description = 'Reset all ACL permissions. This will delete both user and system permissions and install permissions from config file';
protected $description = 'Reset all ACL permissions. This will delete both user and system permissions and install permissions from the config file';

/**
* Execute the console command.
Expand All @@ -37,7 +37,7 @@ public function fire()

\Acl::reloadRoles();

$this->info('ACL permissions successful reseted!');
$this->info('ACL permissions successfully reseted!');
}

}
2 changes: 1 addition & 1 deletion src/VivifyIdeas/Acl/Commands/UpdateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function fire()

\Acl::reloadRoles();

$this->info('ACL permissions successful updated!');
$this->info('ACL permissions successfully updated!');
}

}

0 comments on commit 387345c

Please sign in to comment.