Skip to content

Commit

Permalink
style code fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
apeisa committed Jul 16, 2022
1 parent f6c9678 commit 496f8a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/QueryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public function testOrder(): void

public function testStringableOrder(): void
{
$age = new stringableObject("age");
$age = new stringableObject('age');

$user = User::whereNotNull('age')->orderBy($age, 'asc')->first();
$this->assertEquals(13, $user->age);
Expand Down Expand Up @@ -483,7 +483,7 @@ public function testMultipleSortOrder(): void
}

/**
* Mockup class to test stringable objects
* Mockup class to test stringable objects.
*/
class stringableObject implements Stringable {

Expand Down

0 comments on commit 496f8a0

Please sign in to comment.