Skip to content

Commit

Permalink
fix PHPstan tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Awilum committed Jul 9, 2021
1 parent 3dd01bc commit 25c96a2
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions src/Arrays.php
Original file line number Diff line number Diff line change
Expand Up @@ -432,24 +432,6 @@ function append($value = null): self
return $this;
}

/**
* Push an item into the end of an array by specific key.
*
* @param mixed $value The new item to append
*
* @return self Returns instance of The Arrays class.
*/
function appendIn($key, $value = null): self
{
$data = $this->get($key);

$data[] = $value;

$this->set($key, $data);

return $this;
}

/**
* Push an item into the beginning of an array.
*
Expand Down

0 comments on commit 25c96a2

Please sign in to comment.