Last change
on this file since 394 was 347, checked in by roby, 3 years ago |
Aggiornamento per compatibilità con php7.4
|
File size:
507 bytes
|
Line | |
---|
1 | <?php
|
---|
2 | /**
|
---|
3 | * Html2Pdf Library
|
---|
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 | namespace Spipu\Html2Pdf\Extension;
|
---|
13 |
|
---|
14 | /**
|
---|
15 | * Interface ExtensionInterface
|
---|
16 | */
|
---|
17 | interface ExtensionInterface
|
---|
18 | {
|
---|
19 | /**
|
---|
20 | * Get the extension's name
|
---|
21 | *
|
---|
22 | * @return string
|
---|
23 | */
|
---|
24 | public function getName();
|
---|
25 |
|
---|
26 | /**
|
---|
27 | * @return array()
|
---|
28 | */
|
---|
29 | public function getTags();
|
---|
30 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.