Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed Jun 12, 2024
1 parent 2be29ce commit 1fbc595
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Browsershot.php
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ public function triggeredRequests(): ?array
{
$requests = $this->chromiumResult?->getRequestsList();

if (!is_null($requests)) {
if (! is_null($requests)) {
return $requests;
}

Expand All @@ -734,7 +734,7 @@ public function redirectHistory(): ?array
{
$redirectHistory = $this->chromiumResult?->getRedirectHistory();

if (!is_null($redirectHistory)) {
if (! is_null($redirectHistory)) {
return $redirectHistory;
}

Expand All @@ -756,7 +756,7 @@ public function consoleMessages(): ?array
{
$messages = $this->chromiumResult?->getConsoleMessages();

if (!is_null($messages)) {
if (! is_null($messages)) {
return $messages;
}

Expand All @@ -776,7 +776,7 @@ public function failedRequests(): ?array
{
$requests = $this->chromiumResult?->getFailedRequests();

if (!is_null($requests)) {
if (! is_null($requests)) {
return $requests;
}

Expand All @@ -796,7 +796,7 @@ public function pageErrors(): ?array
{
$pageErrors = $this->chromiumResult?->getPageErrors();

if (!is_null($pageErrors)) {
if (! is_null($pageErrors)) {
return $pageErrors;
}

Expand Down

0 comments on commit 1fbc595

Please sign in to comment.