@@ -59,7 +59,7 @@ |
||
59 | 59 | /** |
60 | 60 | * Get the command definitions this command provides |
61 | 61 | * |
62 | - * @param \Buttress\Concrete\Locator\Site|null $site |
|
62 | + * @param Site $site |
|
63 | 63 | * @return \League\CLImate\Argument\Manager[] A list containing a manager for each command this instance offers |
64 | 64 | */ |
65 | 65 | public function getCommands(Site $site) |
@@ -3,14 +3,11 @@ |
||
3 | 3 | namespace Buttress\Concrete\Console\Command; |
4 | 4 | |
5 | 5 | use Buttress\Concrete\Console\Command\Manager\CommandManager; |
6 | -use Buttress\Concrete\Console\Command\Manager\DefinitionFactory; |
|
7 | 6 | use Buttress\Concrete\CommandBus\Command\Cache\Clear; |
8 | 7 | use Buttress\Concrete\Locator\Site; |
9 | 8 | use Buttress\Concrete\Route\RouteCollector; |
10 | 9 | use League\CLImate\Argument\Manager; |
11 | 10 | use League\CLImate\CLImate; |
12 | -use League\CLImate\Util\Output; |
|
13 | -use League\CLImate\Util\Writer\Buffer; |
|
14 | 11 | use League\Tactician\CommandBus; |
15 | 12 | |
16 | 13 | class CacheCommand implements Command |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | * Handle info types |
55 | 55 | * |
56 | 56 | * @param $level |
57 | - * @param $message |
|
57 | + * @param string $message |
|
58 | 58 | * @param array $context |
59 | 59 | */ |
60 | 60 | private function handleInfo($level, $message, array $context) |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | * Handle debub types |
67 | 67 | * |
68 | 68 | * @param $level |
69 | - * @param $message |
|
69 | + * @param string $message |
|
70 | 70 | * @param array $context |
71 | 71 | */ |
72 | 72 | private function handleDebug($level, $message, array $context) |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | * Handle Errors |
81 | 81 | * |
82 | 82 | * @param $level |
83 | - * @param $message |
|
83 | + * @param string $message |
|
84 | 84 | * @param array $context |
85 | 85 | */ |
86 | 86 | private function handleError($level, $message, array $context) |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | * Interpolate context into a message. |
93 | 93 | * This is copied directly from PSR-3 documentation |
94 | 94 | * |
95 | - * @param $message |
|
95 | + * @param string $message |
|
96 | 96 | * @param array $context |
97 | 97 | * @return string |
98 | 98 | */ |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | private function handleDebug($level, $message, array $context) |
73 | 73 | { |
74 | 74 | if ($this->debug) { |
75 | - $this->cli->output(sprintf(' ~ [%s] %s ', strtoupper($level), $message));; |
|
75 | + $this->cli->output(sprintf(' ~ [%s] %s ', strtoupper($level), $message)); ; |
|
76 | 76 | } |
77 | 77 | } |
78 | 78 | |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | */ |
86 | 86 | private function handleError($level, $message, array $context) |
87 | 87 | { |
88 | - $this->cli->error(sprintf(' ! [%s] %s ', strtoupper($level), $message));; |
|
88 | + $this->cli->error(sprintf(' ! [%s] %s ', strtoupper($level), $message)); ; |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | /** |
@@ -41,7 +41,7 @@ |
||
41 | 41 | */ |
42 | 42 | public function addGroup($prefix, callable $callback) |
43 | 43 | { |
44 | - $this->collector->addGroup($prefix . ':', function (Collector $collector) use ($callback) { |
|
44 | + $this->collector->addGroup($prefix . ':', function(Collector $collector) use ($callback) { |
|
45 | 45 | return $callback(new RouteCollector($collector)); |
46 | 46 | }); |
47 | 47 | } |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | $container = $this->getContainer(); |
40 | 40 | |
41 | 41 | // Share the CLImate object |
42 | - $container->share(CLImate::class, function () use ($container) { |
|
42 | + $container->share(CLImate::class, function() use ($container) { |
|
43 | 43 | return new CLImate(); |
44 | 44 | }); |
45 | 45 | |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | $container->share(HandlerLocator::class)->withArgument($container); |
48 | 48 | |
49 | 49 | // Add the command bus |
50 | - $container->add(CommandBus::class, function (ClassNameExtractor $extractor, HandlerLocator $locator, HandleClassNameInflector $inflector){ |
|
50 | + $container->add(CommandBus::class, function(ClassNameExtractor $extractor, HandlerLocator $locator, HandleClassNameInflector $inflector) { |
|
51 | 51 | $handlerMiddleware = new CommandHandlerMiddleware($extractor, $locator, $inflector); |
52 | 52 | |
53 | 53 | return new CommandBus([$handlerMiddleware]); |
@@ -73,7 +73,7 @@ |
||
73 | 73 | $site = $this->site; |
74 | 74 | $cli = $this->container->get(CLImate::class); |
75 | 75 | |
76 | - $dispatcher = Dispatcher::simpleDispatcher(function (RouteCollector $routes) use ($site) { |
|
76 | + $dispatcher = Dispatcher::simpleDispatcher(function(RouteCollector $routes) use ($site) { |
|
77 | 77 | foreach ($this->collection->all() as $command) { |
78 | 78 | $command->registerRoutes($routes, $site); |
79 | 79 | } |
@@ -15,7 +15,7 @@ |
||
15 | 15 | /** @var string */ |
16 | 16 | protected $name; |
17 | 17 | |
18 | - public function __construct($command='') |
|
18 | + public function __construct($command = '') |
|
19 | 19 | { |
20 | 20 | $this->command($command); |
21 | 21 |