Add Initial teamcity support

This commit is contained in:
Oliver
2023-01-08 11:21:08 +01:00
parent 15931e2418
commit 0839c7e127
36 changed files with 1087 additions and 78 deletions

View File

@ -0,0 +1,22 @@
<?php
declare(strict_types=1);
namespace Pest\Logging\TeamCity\Subscriber;
use Pest\Logging\TeamCity\TeamCityLogger;
/**
* @internal
*/
abstract class Subscriber
{
public function __construct(private readonly TeamCityLogger $logger)
{
}
final protected function logger(): TeamCityLogger
{
return $this->logger;
}
}