Completed
Push — master ( 7381e1...0d723c )
by Korvin
02:16
created
src/Log/Logger.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,9 +3,9 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Route/RouteCollector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Console/Console.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Buttress\Concrete\Console;
4 4
 
5
+use Buttress\Concrete\CommandBus\Command\HandlerLocator;
5 6
 use Buttress\Concrete\CommandBus\Provider\DefaultProvider;
6 7
 use Buttress\Concrete\Console\Command\CacheCommand;
7
-use Buttress\Concrete\CommandBus\Command\HandlerLocator;
8 8
 use Buttress\Concrete\Console\Command\Collection\Collection;
9 9
 use Buttress\Concrete\Console\Command\HelpCommand;
10 10
 use Buttress\Concrete\Console\Command\PackageCommand;
Please login to merge, or discard this patch.
src/Route/Dispatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Provider/LeagueContainer/ServiceProvider.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,9 +80,10 @@
 block discarded – undo
80 80
                 $site = new Site();
81 81
             }
82 82
 
83
-            if ($site->getVersion())
84
-
83
+            if ($site->getVersion()) {
84
+            
85 85
             return $site;
86
+            }
86 87
         });
87 88
 
88 89
         // Share the container
Please login to merge, or discard this patch.
src/Console/Command/Package/InstallController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -90,6 +90,9 @@
 block discarded – undo
90 90
         $this->cli->green('Uninstalled Successfully!');
91 91
     }
92 92
 
93
+    /**
94
+     * @param string $command
95
+     */
93 96
     private function getDefinition(Site $site, $command)
94 97
     {
95 98
         /** @var \Buttress\Concrete\Console\Command\Manager\CommandManager[] $definitions */
Please login to merge, or discard this patch.
src/Console/Command/PackageCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 
37 37
     public function registerRoutes(RouteCollector $collector, Site $site = null)
38 38
     {
39
-        $collector->addGroup('package', function (RouteCollector $collector) {
39
+        $collector->addGroup('package', function(RouteCollector $collector) {
40 40
             // install
41 41
             $collector->addRoute(
42 42
                 'install',
Please login to merge, or discard this patch.
src/CommandBus/Handler/CacheHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
 
61 61
     /**
62 62
      * Clear cache for a LegacyConnection
63
-     * @param \Buttress\Concrete\CommandBus\Handler\LegacyConnection $connection
63
+     * @param Connection $connection
64 64
      */
65 65
     private function clearLegacy(LegacyConnection $connection)
66 66
     {
Please login to merge, or discard this patch.
src/CommandBus/Handler/PackageHandler.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace Buttress\Concrete\CommandBus\Handler;
4 4
 
5
-use Buttress\Concrete\Service\Package\Package;
6
-use Buttress\Concrete\Service\Package\PackageItem;
7 5
 use Buttress\Concrete\CommandBus\Command\Package\Install;
8 6
 use Buttress\Concrete\CommandBus\Command\Package\ListPackages;
9 7
 use Buttress\Concrete\CommandBus\Command\Package\Uninstall;
10 8
 use Buttress\Concrete\Exception\RuntimeException;
9
+use Buttress\Concrete\Service\Package\Package;
10
+use Buttress\Concrete\Service\Package\PackageItem;
11 11
 
12 12
 class PackageHandler
13 13
 {
Please login to merge, or discard this patch.