style: apply fixes from PHP-CS-Fixer

This commit is contained in:
Owen Voke
2022-03-08 10:51:38 +00:00
parent 9cf1005183
commit 3ffed844a6
17 changed files with 33 additions and 33 deletions

View File

@ -12,7 +12,7 @@ class Number
public function __construct(
public int $value
) {
//..
// ..
}
}
@ -21,7 +21,7 @@ class Char
public function __construct(
public string $value
) {
//..
// ..
}
}
@ -30,7 +30,7 @@ class Symbol
public function __construct(
public string $value
) {
//..
// ..
}
}
@ -69,11 +69,11 @@ expect()->pipe('toBe', function ($next, $expected) use ($state) {
assertInstanceOf(Char::class, $expected);
assertEquals($this->value->value, $expected->value);
//returning nothing stops pipeline execution
// returning nothing stops pipeline execution
return;
}
//calling $next(); let the pipeline to keep running
// calling $next(); let the pipeline to keep running
$next();
});