mirror of
https://github.com/pestphp/pest.git
synced 2026-03-12 10:47:25 +01:00
Add Initial teamcity support
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Pest\Logging\TeamCity\Subscriber;
|
||||
|
||||
use PHPUnit\Event\Test\ConsideredRisky;
|
||||
use PHPUnit\Event\Test\ConsideredRiskySubscriber;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
final class TestConsideredRiskySubscriber extends Subscriber implements ConsideredRiskySubscriber
|
||||
{
|
||||
public function notify(ConsideredRisky $event): void
|
||||
{
|
||||
$this->logger()->testConsideredRisky($event);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user