Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot authored and caendesilva committed Jul 30, 2024
1 parent 79b4efe commit 7a00e8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/testing/src/FluentTestingHelpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@ protected function dd($var): void
echo "```\n";
echo $var.($var[-1] === "\n" ? '' : "\n");
echo "```\n";
} elseif(is_array($var)) {
} elseif (is_array($var)) {
echo "```php\n";
echo $this->formatArray($var);
echo "```\n";
} else {
dd($var);
}

die;
exit;
}

/**
Expand Down

0 comments on commit 7a00e8b

Please sign in to comment.