| 1 | <?php |
||
| 13 | class AnonymousReporter extends AbstractBaseReporter |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var callable |
||
| 17 | */ |
||
| 18 | protected $initFn; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Creates a reporter from a callable |
||
| 22 | * |
||
| 23 | * @param callable $init |
||
| 24 | * @param Configuration $configuration |
||
| 25 | * @param OutputInterface $output |
||
| 26 | * @param EventEmitterInterface $eventEmitter |
||
| 27 | */ |
||
| 28 | public function __construct( |
||
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritdoc} |
||
| 40 | * |
||
| 41 | * @return void |
||
| 42 | */ |
||
| 43 | public function init() |
||
| 47 | } |
||
| 48 |