Passed
Push — master ( 9ff117...796cdf )
by Hong
01:49
created
src/ConfigAwareInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
  * @package   Phoole\Config
8 8
  * @copyright Copyright (c) 2019 Hong Zhang
9 9
  */
10
-declare(strict_types = 1);
10
+declare(strict_types=1);
11 11
 
12 12
 namespace Phoole\Config;
13 13
 
Please login to merge, or discard this patch.
src/ConfigAwareTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  * @package   Phoole\Config
8 8
  * @copyright Copyright (c) 2019 Hong Zhang
9 9
  */
10
-declare(strict_types = 1);
10
+declare(strict_types=1);
11 11
 
12 12
 namespace Phoole\Config;
13 13
 
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     public function getConfig(): ConfigInterface
41 41
     {
42 42
         if (is_null($this->config)) {
43
-            throw new \LogicException("Config not set in " . get_class($this));
43
+            throw new \LogicException("Config not set in ".get_class($this));
44 44
         }
45 45
         return $this->config;
46 46
     }
Please login to merge, or discard this patch.