diff --git a/composer.json b/composer.json index 776da01..093cb14 100644 --- a/composer.json +++ b/composer.json @@ -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": { diff --git a/src/VivifyIdeas/Acl/Commands/InstallCommand.php b/src/VivifyIdeas/Acl/Commands/InstallCommand.php index c1341d3..f8060ad 100644 --- a/src/VivifyIdeas/Acl/Commands/InstallCommand.php +++ b/src/VivifyIdeas/Acl/Commands/InstallCommand.php @@ -146,7 +146,7 @@ public function fire() }); } - $this->info('ACL installed successful!'); + $this->info('ACL was installed successfully!'); } private function createConfig() diff --git a/src/VivifyIdeas/Acl/Commands/ResetCommand.php b/src/VivifyIdeas/Acl/Commands/ResetCommand.php index c94c82b..2a0db66 100644 --- a/src/VivifyIdeas/Acl/Commands/ResetCommand.php +++ b/src/VivifyIdeas/Acl/Commands/ResetCommand.php @@ -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. @@ -37,7 +37,7 @@ public function fire() \Acl::reloadRoles(); - $this->info('ACL permissions successful reseted!'); + $this->info('ACL permissions successfully reseted!'); } } diff --git a/src/VivifyIdeas/Acl/Commands/UpdateCommand.php b/src/VivifyIdeas/Acl/Commands/UpdateCommand.php index bd36544..30781a3 100644 --- a/src/VivifyIdeas/Acl/Commands/UpdateCommand.php +++ b/src/VivifyIdeas/Acl/Commands/UpdateCommand.php @@ -37,7 +37,7 @@ public function fire() \Acl::reloadRoles(); - $this->info('ACL permissions successful updated!'); + $this->info('ACL permissions successfully updated!'); } }