Completed
Push — master ( e4c266...3c5e1d )
by Michał
02:49
created
src/core/collections/interfaces/NamedObjectSet.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
      *                                              the Set.
27 27
      * @return  core\interfaces\Named               The object or the default value given if the item couldn't be found.
28 28
      */
29
-    public function get(string $name, core\interfaces\Named $default = null) : ?core\interfaces\Named;
29
+    public function get(string $name, core\interfaces\Named $default = null) : ? core\interfaces\Named;
30 30
 
31 31
     /**
32 32
      * Adds the given Named Object to the Set.
Please login to merge, or discard this patch.
src/core/collections/traits/NamedObjectSet.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     /**
46 46
      * @see \nyx\core\collections\interfaces\NamedObjectSet::get()
47 47
      */
48
-    public function get(string $name, core\interfaces\Named $default = null) : ?core\interfaces\Named
48
+    public function get(string $name, core\interfaces\Named $default = null) : ? core\interfaces\Named
49 49
     {
50 50
         return $this->items[$name] ?? $default;
51 51
     }
Please login to merge, or discard this patch.