Completed
Push — master ( 7c5d05...0ade20 )
by Nate
02:05
created
src/AbstractMap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
      * @param callable $find
53 53
      * @return MapEntry|null
54 54
      */
55
-    public function find(callable $find): ?MapEntry
55
+    public function find(callable $find): ? MapEntry
56 56
     {
57 57
         /** @var MapEntry $mapEntry */
58 58
         foreach ($this->entrySet() as $mapEntry) {
Please login to merge, or discard this patch.
src/MapInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@
 block discarded – undo
153 153
      * @param callable $find
154 154
      * @return MapEntry|null
155 155
      */
156
-    public function find(callable $find): ?MapEntry;
156
+    public function find(callable $find): ? MapEntry;
157 157
 
158 158
     /**
159 159
      * Use a closure to determine existence in the map
Please login to merge, or discard this patch.