File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/Integration/Database Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments