Skip to content

Commit

Permalink
Update tests/QueryTest.php
Browse files Browse the repository at this point in the history
Co-authored-by: Divine <48183131+divine@users.noreply.github.com>
  • Loading branch information
apeisa and divine authored Jul 25, 2022
1 parent 3a87b28 commit f7895bc
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions tests/QueryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -481,20 +481,3 @@ public function testMultipleSortOrder(): void
$this->assertEquals('Brett Boe', $subset[2]->name);
}
}

/**
* Mockup class to test stringable objects.
*/
class stringableObject implements Stringable {
private string $string;

public function __construct(string $string)
{
$this->string = $string;
}

public function __toString()
{
return $this->string;
}
}

0 comments on commit f7895bc

Please sign in to comment.