chore: style

This commit is contained in:
Nuno Maduro
2024-07-11 09:35:38 +01:00
parent e8f122bf47
commit 4783334f15
44 changed files with 59 additions and 171 deletions

View File

@ -30,8 +30,7 @@ final class ExpectationPipeline
*/
public function __construct(
private readonly Closure $closure
) {
}
) {}
/**
* Creates a new instance of Expectation Pipeline with given closure.

View File

@ -16,7 +16,6 @@ final class NullClosure
*/
public static function create(): Closure
{
return Closure::fromCallable(function (): void {
});
return Closure::fromCallable(function (): void {});
}
}