Skip to content

Commit 7d39ae5

Browse files
committed
refactor: _really_ resolve CS issues
1 parent ce6d98d commit 7d39ae5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/Dflydev/FigCookies/SetCookieTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ public function provideParsesFromSetCookieStringData(): array
153153
->withSecure(true)
154154
->withHttpOnly(true)
155155
->withSameSite(SameSite::lax())
156-
->withPartitioned()
157-
]
156+
->withPartitioned(),
157+
],
158158
];
159159
}
160160

tests/Dflydev/FigCookies/SetCookiesTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,9 @@ public function provideSetCookieStringsAndExpectedSetCookiesData(): array
192192
SetCookie::create('d', 'DDD'),
193193
SetCookie::create('e', 'EEE')->withPartitioned(),
194194
SetCookie::create('f', 'FFF'),
195-
SetCookie::create('g', 'GGG')->withPartitioned()
196-
]
197-
]
195+
SetCookie::create('g', 'GGG')->withPartitioned(),
196+
],
197+
],
198198
];
199199
}
200200

0 commit comments

Comments
 (0)