<?php declare(strict_types=1);
/*
* This file is part of PHPUnit.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PHPUnit\Runner\Baseline;
/**
* @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
*
* @internal This class is not covered by the backward compatibility promise for PHPUnit
*/
abstract class Subscriber
{
private readonly Generator $generator;
public function __construct(Generator $generator)
{
$this->generator = $generator;
}
protected function generator(): Generator
{
return $this->generator;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Subscriber.php | File | 765 B | 0644 |
|
| TestTriggeredDeprecationSubscriber.php | File | 984 B | 0644 |
|
| TestTriggeredNoticeSubscriber.php | File | 959 B | 0644 |
|
| TestTriggeredPhpDeprecationSubscriber.php | File | 999 B | 0644 |
|
| TestTriggeredPhpNoticeSubscriber.php | File | 974 B | 0644 |
|
| TestTriggeredPhpWarningSubscriber.php | File | 979 B | 0644 |
|
| TestTriggeredWarningSubscriber.php | File | 964 B | 0644 |
|