We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6c9678 commit 496f8a0Copy full SHA for 496f8a0
tests/QueryTest.php
@@ -241,7 +241,7 @@ public function testOrder(): void
241
242
public function testStringableOrder(): void
243
{
244
- $age = new stringableObject("age");
+ $age = new stringableObject('age');
245
246
$user = User::whereNotNull('age')->orderBy($age, 'asc')->first();
247
$this->assertEquals(13, $user->age);
@@ -483,7 +483,7 @@ public function testMultipleSortOrder(): void
483
}
484
485
/**
486
- * Mockup class to test stringable objects
+ * Mockup class to test stringable objects.
487
*/
488
class stringableObject implements Stringable {
489
0 commit comments