Skip to content

Commit 8a59547

Browse files
authored
doc: fix PHP syntax in README.md on use functions (#170)
1 parent 66937b7 commit 8a59547

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -192,11 +192,11 @@ $browser
192192
// access the current Browser instance
193193
})
194194

195-
->use(function(\Symfony\Component\BrowserKit\AbstractBrowser $browser)) {
195+
->use(function(\Symfony\Component\BrowserKit\AbstractBrowser $browser) {
196196
// access the "inner" browser
197197
})
198198

199-
->use(function(\Symfony\Component\BrowserKit\CookieJar $cookieJar)) {
199+
->use(function(\Symfony\Component\BrowserKit\CookieJar $cookieJar) {
200200
// access the cookie jar
201201
$cookieJar->expire('MOCKSESSID');
202202
})

0 commit comments

Comments
 (0)