Skip to content

Commit

Permalink
typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Awilum committed Oct 26, 2021
1 parent 481790a commit 333df35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Arrays.php
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ public function intersect($items = null): self
*
* @return self Returns instance of The Arrays class.
*/
public function intersectAssoc($items = nul): self
public function intersectAssoc($items = null): self
{
$array = self::getArray($items);

Expand All @@ -877,7 +877,7 @@ public function intersectAssoc($items = nul): self
*
* @return self Returns instance of The Arrays class.
*/
public function intersectKey(array $items = null): self
public function intersectKey($items = null): self
{
$array = self::getArray($items);

Expand Down

0 comments on commit 333df35

Please sign in to comment.