Skip to content

Commit 8c2b260

Browse files
Stu ToddStu Todd
authored andcommitted
Tidy up PHPCS baseline
Quick fixes to empty baseline
1 parent 6e196cd commit 8c2b260

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

phpcs.baseline.xml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +0,0 @@
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-

tests/MapFilterTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ public function can_target_nested_relationships(): void
7979

8080
$builder = $eloquentBuilder->getQuery();
8181
$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' .
8384
' exists (select * from "cards" where "owners"."id" = "cards"."owner_id" and "id" = ?))',
8485
$builder->toSql()
8586
);

0 commit comments

Comments
 (0)