forked from spipu/html2pdf
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDebugInterface.php
More file actions
40 lines (36 loc) · 751 Bytes
/
Copy pathDebugInterface.php
File metadata and controls
40 lines (36 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
/**
* Html2Pdf Library - Debug
*
* HTML => PDF converter
* distributed under the OSL-3.0 License
*
* @package Html2pdf
* @author Laurent MINGUET <webmaster@html2pdf.fr>
* @copyright 2017 Laurent MINGUET
*/
namespace Spipu\Html2Pdf\Debug;
interface DebugInterface
{
/**
* Start the debugger
*
* @return DebugInterface
*/
public function start();
/**
* Stop the debugger
*
* @return DebugInterface
*/
public function stop();
/**
* add a debug step
*
* @param string $name step name
* @param boolean $level (true=up, false=down, null=nothing to do)
*
* @return DebugInterface
*/
public function addStep($name, $level = null);
}