Skip to content

Commit fd97d4b

Browse files
committed
Apply php-cs-fixer changes
1 parent dd163c0 commit fd97d4b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Downloader/Middleware/ExecuteJavascriptMiddleware.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ final class ExecuteJavascriptMiddleware implements ResponseMiddlewareInterface
2828
private $getBrowsershot;
2929

3030
/**
31-
* @param null|callable(string): Browsershot $getBrowsershot
31+
* @param null|callable(string): Browsershot $getBrowsershot
3232
*/
3333
public function __construct(
3434
private LoggerInterface $logger,
@@ -64,7 +64,7 @@ private function configureBrowsershot(string $uri): Browsershot
6464
{
6565
$browsershot = ($this->getBrowsershot)($uri);
6666

67-
if (! empty($this->option('chromiumArguments'))) {
67+
if (!empty($this->option('chromiumArguments'))) {
6868
/** @phpstan-ignore argument.type */
6969
$browsershot->addChromiumArguments($this->option('chromiumArguments'));
7070
}
@@ -104,7 +104,7 @@ private function configureBrowsershot(string $uri): Browsershot
104104
$browsershot->userAgent($userAgent);
105105
}
106106

107-
if (! empty($delay = $this->option('delay'))) {
107+
if (!empty($delay = $this->option('delay'))) {
108108
/** @phpstan-ignore argument.type */
109109
$browsershot->setDelay($delay);
110110
}

0 commit comments

Comments
 (0)