PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
nunomaduro
/
collision
/
src
/
Contracts
<?php declare(strict_types=1); namespace NunoMaduro\Collision\Contracts; use Symfony\Component\Console\Output\OutputInterface; use Whoops\Handler\HandlerInterface; /** * @internal */ interface Handler extends HandlerInterface { /** * Sets the output. * * @return \NunoMaduro\Collision\Contracts\Handler */ public function setOutput(OutputInterface $output): Handler; /** * Returns the writer. * * @return \NunoMaduro\Collision\Contracts\Writer */ public function getWriter(): Writer; }
[+]
..
[-] SolutionsRepository.php
[edit]
[-] RenderlessEditor.php
[edit]
[-] Writer.php
[edit]
[-] Highlighter.php
[edit]
[-] ArgumentFormatter.php
[edit]
[-] Provider.php
[edit]
[-] RenderlessTrace.php
[edit]
[+]
Adapters
[-] Handler.php
[edit]