From 25c96a2ca9d541c04ab4b6289957cd88a9635682 Mon Sep 17 00:00:00 2001 From: Awilum Date: Fri, 9 Jul 2021 16:27:28 +0300 Subject: [PATCH] fix PHPstan tests --- src/Arrays.php | 18 ------------------ 1 file changed, 18 deletions(-) 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. *