golden hour
/opt/cpanel/ea-wappspector/vendor/phpunit/phpunit/src/Event
⬆️ Go Up
Upload
File/Folder
Size
Actions
Dispatcher
-
Del
OK
Emitter
-
Del
OK
Events
-
Del
OK
Exception
-
Del
OK
Facade.php
8.41 KB
Del
OK
Subscriber.php
417 B
Del
OK
Tracer.php
493 B
Del
OK
TypeMap.php
5.57 KB
Del
OK
Value
-
Del
OK
Edit: Tracer.php
<?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\Event\Tracer; use PHPUnit\Event\Event; /** * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit */ interface Tracer { public function trace(Event $event): void; }
Save