chore: style changes

This commit is contained in:
Nuno Maduro
2023-01-11 20:11:36 +00:00
parent 0675529320
commit 349e2f45df
14 changed files with 78 additions and 40 deletions

View File

@ -11,10 +11,16 @@ use Pest\Logging\TeamCity\TeamCityLogger;
*/
abstract class Subscriber
{
/**
* Creates a new Subscriber instance.
*/
public function __construct(private readonly TeamCityLogger $logger)
{
}
/**
* Creates a new TeamCityLogger instance.
*/
final protected function logger(): TeamCityLogger
{
return $this->logger;