Passed
Branch master (11fa15)
by Korotkov
03:34
created
Category
src/Multiton.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
     {
27 27
         $that = get_called_class();
28 28
 
29
-        if (!array_key_exists($that, self::$instances)){
29
+        if (!array_key_exists($that, self::$instances)) {
30 30
             self::$instances[$that] = new self;
31 31
         }
32 32
 
Please login to merge, or discard this patch.
src/tests/MultitonTest.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.