Skip to content

Commit 9115e06

Browse files
committed
wip
1 parent 0020c4d commit 9115e06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Integration/Database/GenericDatabaseTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ public function test_query_with_semicolons(): void
7171

7272
public function test_query_was_invalid_exception_is_thrown_on_fetch(): void
7373
{
74-
$this->assertException(QueryWasInvalid::class, function () {
74+
$this->assertException(QueryWasInvalid::class, function (): void {
7575
query('books')->select()->orderBy('title DES')->first();
7676
});
7777
}
7878

7979
public function test_query_was_invalid_exception_is_thrown_on_execute(): void
8080
{
81-
$this->assertException(QueryWasInvalid::class, function () {
81+
$this->assertException(QueryWasInvalid::class, function (): void {
8282
query('books')->update(title: 'Timeline Taxi')->where('title = ?')->execute();
8383
});
8484
}

0 commit comments

Comments
 (0)