Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVanderbist authored and actions-user committed Dec 27, 2021
1 parent d4b462f commit 63facbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DumpRecorder/DumpRecorder.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function register(): self
return $multiDumpHandler;
});

if (!static::$registeredHandler) {
if (! static::$registeredHandler) {
static::$registeredHandler = true;

$this->ensureOriginalHandlerExists();
Expand Down Expand Up @@ -76,7 +76,7 @@ protected function ensureOriginalHandlerExists(): void
$reflectionProperty->setAccessible(true);
$handler = $reflectionProperty->getValue();

if (!$handler) {
if (! $handler) {
// No handler registered yet, so we'll force VarDumper to create one.
$reflectionMethod = new ReflectionMethod(VarDumper::class, 'register');
$reflectionMethod->setAccessible(true);
Expand Down

0 comments on commit 63facbd

Please sign in to comment.