diff --git a/src/Arrays.php b/src/Arrays.php index 46e9c4f..40118c3 100644 --- a/src/Arrays.php +++ b/src/Arrays.php @@ -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. *