@@ -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 | } |
@@ -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 | } |
@@ -2,10 +2,10 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Buttress\Concrete\Console; |
| 4 | 4 | |
| 5 | -use Buttress\Concrete\Console\Command\CacheCommand; |
|
| 6 | 5 | use Buttress\Concrete\CommandBus\Command\HandlerLocator; |
| 7 | 6 | use Buttress\Concrete\CommandBus\Provider\LegacyProvider; |
| 8 | 7 | use Buttress\Concrete\CommandBus\Provider\ModernProvider; |
| 8 | +use Buttress\Concrete\Console\Command\CacheCommand; |
|
| 9 | 9 | use Buttress\Concrete\Console\Command\Collection\Collection; |
| 10 | 10 | use Buttress\Concrete\Console\Command\HelpCommand; |
| 11 | 11 | use Buttress\Concrete\Exception\BaseException; |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | */ |
| 43 | 43 | public static function simpleDispatcher(callable $routeDefinitionCallback, array $options = []) |
| 44 | 44 | { |
| 45 | - return new static(simpleDispatcher(function (Collector $collector) use ($routeDefinitionCallback) { |
|
| 45 | + return new static(simpleDispatcher(function(Collector $collector) use ($routeDefinitionCallback) { |
|
| 46 | 46 | return $routeDefinitionCallback(new RouteCollector($collector)); |
| 47 | 47 | }, $options)); |
| 48 | 48 | } |
@@ -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 | |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | // Add the command bus |
| 50 | 50 | $container->add( |
| 51 | 51 | CommandBus::class, |
| 52 | - function (ClassNameExtractor $extractor, HandlerLocator $locator, HandleClassNameInflector $inflector) { |
|
| 52 | + function(ClassNameExtractor $extractor, HandlerLocator $locator, HandleClassNameInflector $inflector) { |
|
| 53 | 53 | $handlerMiddleware = new CommandHandlerMiddleware($extractor, $locator, $inflector); |
| 54 | 54 | |
| 55 | 55 | return new CommandBus([$handlerMiddleware]); |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | ->withArgument(Collection::class) |
| 64 | 64 | ->withArgument(Site::class); |
| 65 | 65 | |
| 66 | - $container->share(Site::class, function () use ($container) { |
|
| 66 | + $container->share(Site::class, function() use ($container) { |
|
| 67 | 67 | $site = $container->get(Locator::class)->getLocation(); |
| 68 | 68 | if (!$site) { |
| 69 | 69 | $site = new Site(); |
@@ -3,9 +3,9 @@ |
||
| 3 | 3 | namespace Buttress\Concrete\Log; |
| 4 | 4 | |
| 5 | 5 | use League\CLImate\CLImate; |
| 6 | +use Psr\Log\LogLevel; |
|
| 6 | 7 | use Psr\Log\LoggerInterface; |
| 7 | 8 | use Psr\Log\LoggerTrait; |
| 8 | -use Psr\Log\LogLevel; |
|
| 9 | 9 | |
| 10 | 10 | /** |
| 11 | 11 | * A PSR3 logger that pushes entries out to CLImate |