File tree Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change 1
-
2
- FILE: tests/MapFilterTest.php
3
- ----------------------------------------------------------------------
4
- FOUND 0 ERRORS AND 2 WARNINGS AFFECTING 2 LINES
5
- ----------------------------------------------------------------------
6
- 32 | WARNING | Line exceeds 120 characters; contains 126 characters
7
- 81 | WARNING | Line exceeds 120 characters; contains 202 characters
8
- ----------------------------------------------------------------------
9
-
10
-
Original file line number Diff line number Diff line change @@ -79,7 +79,8 @@ public function can_target_nested_relationships(): void
79
79
80
80
$ builder = $ eloquentBuilder ->getQuery ();
81
81
$ this ->assertEquals (
82
- 'select * from "pets" where exists (select * from "owners" where "pets"."owner_id" = "owners"."id" and ' .
82
+ 'select * from "pets" where ' .
83
+ ' exists (select * from "owners" where "pets"."owner_id" = "owners"."id" and ' .
83
84
' exists (select * from "cards" where "owners"."id" = "cards"."owner_id" and "id" = ?)) ' ,
84
85
$ builder ->toSql ()
85
86
);
You can’t perform that action at this time.
0 commit comments