Completed
Push — master ( 0d723c...aa6b9d )
by Korvin
04:30
created
src/Service/Package/DriverFactory.php 1 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\Service\Package;
4 4
 
5
+use Buttress\Concrete\Locator\Site;
5 6
 use Buttress\Concrete\Service\Package\Driver\LegacyDriver;
6 7
 use Buttress\Concrete\Service\Package\Driver\ModernDriver;
7
-use Buttress\Concrete\Locator\Site;
8 8
 use Psr\Container\ContainerInterface;
9 9
 
10 10
 class DriverFactory
Please login to merge, or discard this patch.
src/Service/Result.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     }
21 21
 
22 22
     /**
23
-     * @return success
23
+     * @return boolean
24 24
      */
25 25
     public function success()
26 26
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
         }
17 17
 
18 18
         $this->success = (bool) $success;
19
-        $this->errors = (array)$errors;
19
+        $this->errors = (array) $errors;
20 20
     }
21 21
 
22 22
     /**
Please login to merge, or discard this patch.
src/Client/Adapter/ModernAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     public function attach()
40 40
     {
41
-        $connection =  new ModernConnection();
41
+        $connection = new ModernConnection();
42 42
         $connection->connect($this->resolveApplication());
43 43
 
44 44
         return $connection;
Please login to merge, or discard this patch.
src/Provider/LeagueContainer/ServiceProvider.php 2 patches
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.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         $container = $this->getContainer();
53 53
 
54 54
         // Share the CLImate object
55
-        $container->share(CLImate::class, function () use ($container) {
55
+        $container->share(CLImate::class, function() use ($container) {
56 56
             return new CLImate();
57 57
         });
58 58
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
         // Add the command bus
63 63
         $container->add(
64 64
             CommandBus::class,
65
-            function (ClassNameExtractor $extractor, HandlerLocator $locator, HandleClassNameInflector $inflector) {
65
+            function(ClassNameExtractor $extractor, HandlerLocator $locator, HandleClassNameInflector $inflector) {
66 66
                 $handlerMiddleware = new CommandHandlerMiddleware($extractor, $locator, $inflector);
67 67
 
68 68
                 return new CommandBus([$handlerMiddleware]);
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
                 ErrorHandler::class
79 79
             ]);
80 80
 
81
-        $container->share(Site::class, function () use ($container) {
81
+        $container->share(Site::class, function() use ($container) {
82 82
             $site = $container->get(Locator::class)->getLocation();
83 83
             if (!$site) {
84 84
                 $site = new Site();
Please login to merge, or discard this patch.
src/Exception/ErrorHandler.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@  discard block
 block discarded – undo
26 26
         set_exception_handler([$this, 'handleException']);
27 27
     }
28 28
 
29
+    /**
30
+     * @param boolean $verbose
31
+     */
29 32
     public function setVerbose($verbose)
30 33
     {
31 34
         $this->verbose = $verbose;
@@ -56,7 +59,7 @@  discard block
 block discarded – undo
56 59
      * @param string $file
57 60
      * @param int $line
58 61
      * @param array $context
59
-     * @return bool
62
+     * @return false|null
60 63
      */
61 64
     public function handleError($code, $message, $file, $line, $context)
62 65
     {
Please login to merge, or discard this patch.