Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compatibility #4

Merged
merged 3 commits into from
Apr 30, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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!');
}

}