mirror of
https://github.com/pestphp/pest.git
synced 2026-07-24 10:30:03 +02:00
20 lines
367 B
PHP
20 lines
367 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Logging\TeamCity\Subscriber;
|
|
|
|
use PHPUnit\Event\Test\Skipped;
|
|
use PHPUnit\Event\Test\SkippedSubscriber;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
final class TestSkippedSubscriber extends Subscriber implements SkippedSubscriber
|
|
{
|
|
public function notify(Skipped $event): void
|
|
{
|
|
$this->logger()->testSkipped($event);
|
|
}
|
|
}
|