Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
Laravel 5.5.20 changes (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
besologic authored Nov 9, 2017
1 parent 0562e11 commit ea6c2f9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/Illuminate/Support/Traits/Macroable.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
use ReflectionClass;
use ReflectionMethod;
use BadMethodCallException;
use Illuminate\Contracts\Support\Macro;

trait Macroable
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Support/SupportCollectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ public function testCollapse()
$this->assertEquals([$object1, $object2], $data->collapse()->all());
}

public function testCollapseWithNestedCollactions()
public function testCollapseWithNestedCollections()
{
$data = new Collection([new Collection([1, 2, 3]), new Collection([4, 5, 6])]);
$this->assertEquals([1, 2, 3, 4, 5, 6], $data->collapse()->all());
Expand Down

0 comments on commit ea6c2f9

Please sign in to comment.