Make PHP 5.5 compat

This commit is contained in:
Niklas Keller
2015-12-20 21:49:23 +01:00
parent 7f0869150f
commit 5a4ab4a410
11 changed files with 182 additions and 148 deletions

View File

@@ -2,7 +2,7 @@
namespace Kelunik\AcmeClient;
function commandToClass(string $command): string {
function commandToClass($command) {
return __NAMESPACE__ . "\\Commands\\" . ucfirst($command);
}