Last change
on this file since 398 was 347, checked in by roby, 3 years ago |
Aggiornamento per compatibilità con php7.4
|
File size:
751 bytes
|
Line | |
---|
1 | <?php
|
---|
2 | /**
|
---|
3 | * Html2Pdf Library - Debug
|
---|
4 | *
|
---|
5 | * HTML => PDF converter
|
---|
6 | * distributed under the OSL-3.0 License
|
---|
7 | *
|
---|
8 | * @package Html2pdf
|
---|
9 | * @author Laurent MINGUET <webmaster@html2pdf.fr>
|
---|
10 | * @copyright 2017 Laurent MINGUET
|
---|
11 | */
|
---|
12 |
|
---|
13 | namespace Spipu\Html2Pdf\Debug;
|
---|
14 |
|
---|
15 | interface DebugInterface
|
---|
16 | {
|
---|
17 | /**
|
---|
18 | * Start the debugger
|
---|
19 | *
|
---|
20 | * @return DebugInterface
|
---|
21 | */
|
---|
22 | public function start();
|
---|
23 |
|
---|
24 | /**
|
---|
25 | * Stop the debugger
|
---|
26 | *
|
---|
27 | * @return DebugInterface
|
---|
28 | */
|
---|
29 | public function stop();
|
---|
30 |
|
---|
31 | /**
|
---|
32 | * add a debug step
|
---|
33 | *
|
---|
34 | * @param string $name step name
|
---|
35 | * @param boolean $level (true=up, false=down, null=nothing to do)
|
---|
36 | *
|
---|
37 | * @return DebugInterface
|
---|
38 | */
|
---|
39 | public function addStep($name, $level = null);
|
---|
40 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.