mirror of
https://github.com/pestphp/pest.git
synced 2026-03-08 00:37:22 +01:00
20 lines
439 B
PHP
20 lines
439 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Logging\TeamCity\Subscriber;
|
|
|
|
use PHPUnit\Event\TestRunner\ExecutionFinished;
|
|
use PHPUnit\Event\TestRunner\ExecutionFinishedSubscriber;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class TestExecutionFinishedSubscriber extends Subscriber implements ExecutionFinishedSubscriber
|
|
{
|
|
public function notify(ExecutionFinished $event): void
|
|
{
|
|
$this->logger()->testExecutionFinished($event);
|
|
}
|
|
}
|