mirror of
https://github.com/pestphp/pest.git
synced 2026-04-20 22:20:17 +02:00
23 lines
400 B
PHP
23 lines
400 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Subscribers;
|
|
|
|
use PHPUnit\Event\TestSuite\Started;
|
|
use PHPUnit\Event\TestSuite\StartedSubscriber;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class EnsureShardTimingStarted implements StartedSubscriber
|
|
{
|
|
/**
|
|
* Runs the subscriber.
|
|
*/
|
|
public function notify(Started $event): void
|
|
{
|
|
EnsureShardTimingsAreCollected::started($event);
|
|
}
|
|
}
|