mirror of
https://github.com/pestphp/pest.git
synced 2026-03-10 01:37:21 +01:00
Adjust style
This commit is contained in:
@ -32,8 +32,7 @@ final class BootSubscribers implements Bootstrapper
|
||||
*/
|
||||
public function __construct(
|
||||
private readonly Container $container,
|
||||
) {
|
||||
}
|
||||
) {}
|
||||
|
||||
/**
|
||||
* Boots the list of Subscribers.
|
||||
|
||||
@ -32,8 +32,7 @@ final class Configuration
|
||||
*/
|
||||
private function __construct(
|
||||
private readonly string $filename,
|
||||
) {
|
||||
}
|
||||
) {}
|
||||
|
||||
/**
|
||||
* Gets the configuration of a certain folder.
|
||||
|
||||
@ -7,6 +7,4 @@ namespace Pest\Contracts;
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
interface ArchPreset
|
||||
{
|
||||
}
|
||||
interface ArchPreset {}
|
||||
|
||||
@ -24,9 +24,7 @@ final class EachExpectation
|
||||
*
|
||||
* @param Expectation<TValue> $original
|
||||
*/
|
||||
public function __construct(private readonly Expectation $original)
|
||||
{
|
||||
}
|
||||
public function __construct(private readonly Expectation $original) {}
|
||||
|
||||
/**
|
||||
* Creates a new expectation.
|
||||
|
||||
@ -36,9 +36,7 @@ final class OppositeExpectation
|
||||
*
|
||||
* @param Expectation<TValue> $original
|
||||
*/
|
||||
public function __construct(private readonly Expectation $original)
|
||||
{
|
||||
}
|
||||
public function __construct(private readonly Expectation $original) {}
|
||||
|
||||
/**
|
||||
* Asserts that the value array not has the provided $keys.
|
||||
|
||||
@ -55,6 +55,7 @@ if (! function_exists('beforeEach')) {
|
||||
* Runs the given closure before each test in the current file.
|
||||
*
|
||||
* @param-closure-this TestCase $closure
|
||||
*
|
||||
* @return HigherOrderTapProxy<Expectable|TestCall|TestCase>|Expectable|TestCall|TestCase|mixed
|
||||
*/
|
||||
function beforeEach(?Closure $closure = null): BeforeEachCall
|
||||
@ -127,6 +128,7 @@ if (! function_exists('test')) {
|
||||
* a closure that contains the test expectations.
|
||||
*
|
||||
* @param-closure-this TestCase $closure
|
||||
*
|
||||
* @return Expectable|TestCall|TestCase|mixed
|
||||
*/
|
||||
function test(?string $description = null, ?Closure $closure = null): HigherOrderTapProxy|TestCall
|
||||
@ -148,6 +150,7 @@ if (! function_exists('it')) {
|
||||
* a closure that contains the test expectations.
|
||||
*
|
||||
* @param-closure-this TestCase $closure
|
||||
*
|
||||
* @return Expectable|TestCall|TestCase|mixed
|
||||
*/
|
||||
function it(string $description, ?Closure $closure = null): TestCall
|
||||
@ -184,6 +187,7 @@ if (! function_exists('afterEach')) {
|
||||
* Runs the given closure after each test in the current file.
|
||||
*
|
||||
* @param-closure-this TestCase $closure
|
||||
*
|
||||
* @return Expectable|HigherOrderTapProxy<Expectable|TestCall|TestCase>|TestCall|mixed
|
||||
*/
|
||||
function afterEach(?Closure $closure = null): AfterEachCall
|
||||
|
||||
@ -17,8 +17,7 @@ final class ServiceMessage
|
||||
public function __construct(
|
||||
private readonly string $type,
|
||||
private readonly array $parameters,
|
||||
) {
|
||||
}
|
||||
) {}
|
||||
|
||||
public function toString(): string
|
||||
{
|
||||
|
||||
@ -14,9 +14,7 @@ abstract class Subscriber
|
||||
/**
|
||||
* Creates a new Subscriber instance.
|
||||
*/
|
||||
public function __construct(private readonly TeamCityLogger $logger)
|
||||
{
|
||||
}
|
||||
public function __construct(private readonly TeamCityLogger $logger) {}
|
||||
|
||||
/**
|
||||
* Creates a new TeamCityLogger instance.
|
||||
|
||||
@ -7,6 +7,4 @@ namespace Pest\Matchers;
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
final class Any
|
||||
{
|
||||
}
|
||||
final class Any {}
|
||||
|
||||
@ -63,8 +63,7 @@ final class ResultPrinter
|
||||
{
|
||||
public function __construct(
|
||||
private readonly OutputInterface $output,
|
||||
) {
|
||||
}
|
||||
) {}
|
||||
|
||||
public function print(string $buffer): void
|
||||
{
|
||||
@ -79,9 +78,7 @@ final class ResultPrinter
|
||||
$this->output->write(OutputFormatter::escape($buffer));
|
||||
}
|
||||
|
||||
public function flush(): void
|
||||
{
|
||||
}
|
||||
public function flush(): void {}
|
||||
};
|
||||
|
||||
$this->compactPrinter = CompactPrinter::default();
|
||||
|
||||
@ -21,8 +21,7 @@ final class SnapshotRepository
|
||||
public function __construct(
|
||||
readonly private string $testsPath,
|
||||
readonly private string $snapshotsPath,
|
||||
) {
|
||||
}
|
||||
) {}
|
||||
|
||||
/**
|
||||
* Checks if the snapshot exists.
|
||||
|
||||
@ -24,8 +24,7 @@ final class EnsureTeamCityEnabled implements ConfiguredSubscriber
|
||||
private readonly InputInterface $input,
|
||||
private readonly OutputInterface $output,
|
||||
private readonly TestSuite $testSuite,
|
||||
) {
|
||||
}
|
||||
) {}
|
||||
|
||||
/**
|
||||
* Runs the subscriber.
|
||||
|
||||
@ -30,8 +30,7 @@ final class ExpectationPipeline
|
||||
*/
|
||||
public function __construct(
|
||||
private readonly Closure $closure
|
||||
) {
|
||||
}
|
||||
) {}
|
||||
|
||||
/**
|
||||
* Creates a new instance of Expectation Pipeline with given closure.
|
||||
|
||||
@ -16,7 +16,6 @@ final class NullClosure
|
||||
*/
|
||||
public static function create(): Closure
|
||||
{
|
||||
return Closure::fromCallable(function (): void {
|
||||
});
|
||||
return Closure::fromCallable(function (): void {});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user