File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,8 @@ public function skip(int $position): Pair
109109 }
110110
111111 /**
112- * Merge an array of values with the current Map
112+ * Returns the result of associating all keys of a given traversable object
113+ * or array with their corresponding values, as well as those of this map.
113114 *
114115 * @param array|\Traversable $values
115116 *
Original file line number Diff line number Diff line change 11<?php
22namespace Ds \Traits ;
33
4- use Ds \Collection ;
54use Ds \Sequence ;
65use OutOfRangeException ;
76use UnderflowException ;
@@ -149,7 +148,7 @@ public function last()
149148 throw new UnderflowException ();
150149 }
151150
152- return $ this ->array [ count ($ this ) - 1 ];
151+ return $ this ->array [count ($ this ) - 1 ];
153152 }
154153
155154 /**
You can’t perform that action at this time.
0 commit comments