Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | declare(strict_types=1); |
| 3 | /** |
| 4 | * Pop PHP Framework (https://www.popphp.org/) |
| 5 | * |
| 6 | * @link https://github.com/popphp/popphp-framework |
| 7 | * @author Nick Sagona, III <dev@noladev.com> |
| 8 | * @copyright Copyright (c) 2009-2027 NOLA Interactive, LLC. |
| 9 | * @license https://www.popphp.org/license New BSD License |
| 10 | */ |
| 11 | |
| 12 | /** |
| 13 | * @namespace |
| 14 | */ |
| 15 | namespace Pop\Utils; |
| 16 | |
| 17 | /** |
| 18 | * Pop utils debugger interface |
| 19 | * |
| 20 | * @category Pop |
| 21 | * @package Pop\Utils |
| 22 | * @author Nick Sagona, III <dev@noladev.com> |
| 23 | * @copyright Copyright (c) 2009-2027 NOLA Interactive, LLC. |
| 24 | * @license https://www.popphp.org/license New BSD License |
| 25 | * @version 3.0.0 |
| 26 | */ |
| 27 | interface DebuggerInterface |
| 28 | { |
| 29 | |
| 30 | /** |
| 31 | * Add a handler |
| 32 | * |
| 33 | * @param DebuggerHandlerInterface $handler |
| 34 | * @return DebuggerInterface |
| 35 | */ |
| 36 | public function addHandler(DebuggerHandlerInterface $handler): DebuggerInterface; |
| 37 | |
| 38 | /** |
| 39 | * Save the debug handlers' data to storage (returns the request ID of what was saved) |
| 40 | * |
| 41 | * @return string |
| 42 | */ |
| 43 | public function save(): string; |
| 44 | |
| 45 | } |