Skip to content

Commit 3eca897

Browse files
committed
Add multiply to collection
Multiply the items in the collection by the multiplier.
1 parent 5104bce commit 3eca897

File tree

4 files changed

+62
-0
lines changed

4 files changed

+62
-0
lines changed

src/Illuminate/Collections/Collection.php

+17
Original file line numberDiff line numberDiff line change
@@ -830,6 +830,23 @@ public function mergeRecursive($items)
830830
return new static(array_merge_recursive($this->items, $this->getArrayableItems($items)));
831831
}
832832

833+
/**
834+
* Multiply the items in the collection by the multiplier.
835+
*
836+
* @param $multiplier
837+
* @return static
838+
*/
839+
public function multiply($multiplier)
840+
{
841+
$new = new static();
842+
843+
for ($i = 0; $i < $multiplier; $i++) {
844+
$new->push(...$this->items);
845+
}
846+
847+
return $new;
848+
}
849+
833850
/**
834851
* Create a collection by using this collection for keys and another for its values.
835852
*

src/Illuminate/Collections/LazyCollection.php

+11
Original file line numberDiff line numberDiff line change
@@ -841,6 +841,17 @@ public function mergeRecursive($items)
841841
return $this->passthru('mergeRecursive', func_get_args());
842842
}
843843

844+
/**
845+
* Multiply the items in the collection by the multiplier.
846+
*
847+
* @param $multiplier
848+
* @return static
849+
*/
850+
public function multiply($multiplier)
851+
{
852+
return $this->passthru('multiply', func_get_args());
853+
}
854+
844855
/**
845856
* Create a collection by using this collection for keys and another for its values.
846857
*

tests/Database/DatabaseEloquentCollectionTest.php

+15
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,21 @@ public function testMakeVisibleRemovesHiddenAndIncludesVisible()
510510
$this->assertEquals(['visible', 'hidden'], $c[0]->getVisible());
511511
}
512512

513+
public function testMultiply()
514+
{
515+
$a = new TestEloquentCollectionModel();
516+
$b = new TestEloquentCollectionModel();
517+
518+
$c = new Collection([$a, $b]);
519+
520+
$this->assertEquals([], $c->multiply(-1)->all());
521+
$this->assertEquals([], $c->multiply(0)->all());
522+
523+
$this->assertEquals([$a, $b], $c->multiply(1)->all());
524+
525+
$this->assertEquals([$a, $b, $a, $b, $a, $b], $c->multiply(3)->all());
526+
}
527+
513528
public function testQueueableCollectionImplementation()
514529
{
515530
$c = new Collection([new TestEloquentCollectionModel, new TestEloquentCollectionModel]);

tests/Support/SupportCollectionTest.php

+19
Original file line numberDiff line numberDiff line change
@@ -1231,6 +1231,25 @@ public function testMergeRecursiveCollection($collection)
12311231
);
12321232
}
12331233

1234+
#[DataProvider('collectionClassProvider')]
1235+
public function testMultiplyCollection($collection)
1236+
{
1237+
$c = new $collection(['Hello', 1, ['tags' => ['a', 'b'], 'admin']]);
1238+
1239+
$this->assertEquals([], $c->multiply(-1)->all());
1240+
$this->assertEquals([], $c->multiply(0)->all());
1241+
1242+
$this->assertEquals(
1243+
['Hello', 1, ['tags' => ['a', 'b'], 'admin']],
1244+
$c->multiply(1)->all()
1245+
);
1246+
1247+
$this->assertEquals(
1248+
['Hello', 1, ['tags' => ['a', 'b'], 'admin'], 'Hello', 1, ['tags' => ['a', 'b'], 'admin'], 'Hello', 1, ['tags' => ['a', 'b'], 'admin']],
1249+
$c->multiply(3)->all()
1250+
);
1251+
}
1252+
12341253
#[DataProvider('collectionClassProvider')]
12351254
public function testReplaceNull($collection)
12361255
{

0 commit comments

Comments
 (0)