diff --git a/src/Illuminate/Collections/Collection.php b/src/Illuminate/Collections/Collection.php index a58bd7518f9f..b6fa288d7a1b 100644 --- a/src/Illuminate/Collections/Collection.php +++ b/src/Illuminate/Collections/Collection.php @@ -4,8 +4,6 @@ use ArrayAccess; use ArrayIterator; -use Illuminate\Collections\ItemNotFoundException; -use Illuminate\Collections\MultipleItemsFoundException; use Illuminate\Support\Traits\EnumeratesValues; use Illuminate\Support\Traits\Macroable; use stdClass; @@ -1110,8 +1108,8 @@ public function splitIn($numberOfGroups) * @param mixed $value * @return mixed * - * @throws \Illuminate\Collections\ItemNotFoundException - * @throws \Illuminate\Collections\MultipleItemsFoundException + * @throws \Illuminate\Support\ItemNotFoundException + * @throws \Illuminate\Support\MultipleItemsFoundException */ public function sole($key = null, $operator = null, $value = null) { diff --git a/src/Illuminate/Collections/ItemNotFoundException.php b/src/Illuminate/Collections/ItemNotFoundException.php index 8f9c17f0eb74..05a51d95475e 100644 --- a/src/Illuminate/Collections/ItemNotFoundException.php +++ b/src/Illuminate/Collections/ItemNotFoundException.php @@ -1,6 +1,6 @@