Skip to content

Commit 46e2b6f

Browse files
committed
Apply fixes from StyleCI
1 parent 1a03156 commit 46e2b6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Communication/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ public function processAllEvents(): void
373373
private function dispatchMessage(string $message, ?Session $session = null)
374374
{
375375
try {
376-
$response = \json_decode($message, true, 512, JSON_THROW_ON_ERROR);
376+
$response = \json_decode($message, true, 512, \JSON_THROW_ON_ERROR);
377377
} catch (\JsonException $e) {
378378
if ($this->isStrict()) {
379379
throw new CannotReadResponse('Response from chrome remote interface is not a valid JSON response', 0, $e);

0 commit comments

Comments
 (0)