Skip to content

Commit 8154eb6

Browse files
faissalouxtaylorotwell
andauthoredJun 3, 2024
[10.x] Fix collection shift less than one item (#51686)
* fix collection shift less than 1 * throw exception earlier * Update Collection.php --------- Co-authored-by: Taylor Otwell <taylor@laravel.com>
1 parent 0bf2a4c commit 8154eb6

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed
 

‎src/Illuminate/Collections/Collection.php

+10-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
use Illuminate\Contracts\Support\CanBeEscapedWhenCastToString;
88
use Illuminate\Support\Traits\EnumeratesValues;
99
use Illuminate\Support\Traits\Macroable;
10+
use InvalidArgumentException;
1011
use stdClass;
1112
use Traversable;
1213

@@ -1124,17 +1125,23 @@ public function search($value, $strict = false)
11241125
*
11251126
* @param int $count
11261127
* @return static<int, TValue>|TValue|null
1128+
*
1129+
* @throws \InvalidArgumentException
11271130
*/
11281131
public function shift($count = 1)
11291132
{
1130-
if ($count === 1) {
1131-
return array_shift($this->items);
1133+
if ($count < 0) {
1134+
throw new InvalidArgumentException('Number of shifted items may not be less than zero.');
11321135
}
11331136

1134-
if ($this->isEmpty()) {
1137+
if ($count === 0 || $this->isEmpty()) {
11351138
return new static;
11361139
}
11371140

1141+
if ($count === 1) {
1142+
return array_shift($this->items);
1143+
}
1144+
11381145
$results = [];
11391146

11401147
$collectionCount = $this->count();

‎tests/Support/SupportCollectionTest.php

+11
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,17 @@ public function testShiftReturnsAndRemovesFirstXItemsInCollection()
391391
$this->assertSame('baz', $data->first());
392392

393393
$this->assertEquals(new Collection(['foo', 'bar', 'baz']), (new Collection(['foo', 'bar', 'baz']))->shift(6));
394+
395+
$data = new Collection(['foo', 'bar', 'baz']);
396+
397+
$this->assertEquals(new Collection([]), $data->shift(0));
398+
$this->assertEquals(collect(['foo', 'bar', 'baz']), $data);
399+
400+
$this->expectException('InvalidArgumentException');
401+
(new Collection(['foo', 'bar', 'baz']))->shift(-1);
402+
403+
$this->expectException('InvalidArgumentException');
404+
(new Collection(['foo', 'bar', 'baz']))->shift(-2);
394405
}
395406

396407
/**

0 commit comments

Comments
 (0)