Skip to content

Commit

Permalink
Format code (#6994)
Browse files Browse the repository at this point in the history
  • Loading branch information
limingxinleo authored Aug 8, 2024
1 parent f043382 commit e06a438
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/CursorPaginatorLoadMorphCountTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function testCollectionLoadMorphCountCanChainOnThePaginator(): void
$items = m::mock(Collection::class);
$items->expects('loadMorphCount')->with('parentable', $relations);

$p = (new class() extends AbstractCursorPaginator {
$p = (new class extends AbstractCursorPaginator {
public function __toString()
{
return '';
Expand Down
2 changes: 1 addition & 1 deletion tests/CursorPaginatorLoadMorphTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function testCollectionLoadMorphCanChainOnThePaginator(): void
$items = m::mock(Collection::class);
$items->shouldReceive('loadMorph')->once()->with('parentable', $relations);

$p = (new class() extends AbstractCursorPaginator {
$p = (new class extends AbstractCursorPaginator {
public function __toString()
{
return '';
Expand Down

0 comments on commit e06a438

Please sign in to comment.