mirror of
https://github.com/pestphp/pest.git
synced 2026-04-21 06:27:28 +02:00
23 lines
406 B
PHP
23 lines
406 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Subscribers;
|
|
|
|
use PHPUnit\Event\TestSuite\Finished;
|
|
use PHPUnit\Event\TestSuite\FinishedSubscriber;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class EnsureShardTimingFinished implements FinishedSubscriber
|
|
{
|
|
/**
|
|
* Runs the subscriber.
|
|
*/
|
|
public function notify(Finished $event): void
|
|
{
|
|
EnsureShardTimingsAreCollected::finished($event);
|
|
}
|
|
}
|