Completed
Branch master (bc8221)
by Korotkov
03:12
created
Category
src/tests/SingletonsPoolTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * @author    : Korotkov Danila <[email protected]>
Please login to merge, or discard this patch.
src/SingletonsPool.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      */
30 30
     public static function getInstances(string $instance): self
31 31
     {
32
-        if (!array_key_exists($instance, self::$instances)){
32
+        if (!array_key_exists($instance, self::$instances)) {
33 33
             self::$instances[$instance] = new self;
34 34
         }
35 35
 
Please login to merge, or discard this patch.