mirror of
https://github.com/pestphp/pest.git
synced 2026-09-05 14:23:34 +02:00
21 lines
397 B
PHP
21 lines
397 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Logging\TeamCity\Subscriber;
|
|
|
|
use Pest\Logging\TeamCity\TeamCityLogger;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
abstract class Subscriber // @pest-arch-ignore-line
|
|
{
|
|
public function __construct(private readonly TeamCityLogger $logger) {}
|
|
|
|
final protected function logger(): TeamCityLogger // @pest-arch-ignore-line
|
|
{
|
|
return $this->logger;
|
|
}
|
|
}
|