Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
nunomaduro
/
collision
/
src
/
Adapters
/
Phpunit
/
Subscribers
Location:
/home/zoteqbgb/public_html/vendor/nunomaduro/collision/src/Adapters/Phpunit/Subscribers
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: Subscriber.php
<?php declare(strict_types=1); /** * This file is part of Collision. * * (c) Nuno Maduro <enunomaduro@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace NunoMaduro\Collision\Adapters\Phpunit\Subscribers; use NunoMaduro\Collision\Adapters\Phpunit\Printers\ReportablePrinter; /** * @internal */ abstract class Subscriber { /** * The printer instance. */ private ReportablePrinter $printer; /** * Creates a new subscriber. */ public function __construct(ReportablePrinter $printer) { $this->printer = $printer; } /** * Returns the printer instance. */ protected function printer(): ReportablePrinter { return $this->printer; } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
EnsurePrinterIsRegisteredSubscriber.php
12,267 bytes
0644
2025-03-04 13:39
âï¸
ðï¸
Rename
Subscriber.php
830 bytes
0644
2025-03-04 13:39
âï¸
ðï¸
Rename
Chang
Apply