Skip to content

Commit 9b6746f

Browse files
committed
Update namespaces in docblocks
1 parent 664e65d commit 9b6746f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Collection.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1138,7 +1138,7 @@ public function sole($key = null, $operator = null, $value = null)
11381138
* @param mixed $value
11391139
* @return mixed
11401140
*
1141-
* @throws \Illuminate\Collections\ItemNotFoundException
1141+
* @throws \Illuminate\Support\ItemNotFoundException
11421142
*/
11431143
public function firstOrFail($key = null, $operator = null, $value = null)
11441144
{

Enumerable.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -816,8 +816,8 @@ public function split($numberOfGroups);
816816
* @param mixed $value
817817
* @return mixed
818818
*
819-
* @throws \Illuminate\Collections\ItemNotFoundException
820-
* @throws \Illuminate\Collections\MultipleItemsFoundException
819+
* @throws \Illuminate\Support\ItemNotFoundException
820+
* @throws \Illuminate\Support\MultipleItemsFoundException
821821
*/
822822
public function sole($key = null, $operator = null, $value = null);
823823

LazyCollection.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1082,7 +1082,7 @@ public function sole($key = null, $operator = null, $value = null)
10821082
* @param mixed $value
10831083
* @return mixed
10841084
*
1085-
* @throws \Illuminate\Collections\ItemNotFoundException
1085+
* @throws \Illuminate\Support\ItemNotFoundException
10861086
*/
10871087
public function firstOrFail($key = null, $operator = null, $value = null)
10881088
{

0 commit comments

Comments
 (0)