1 | <?php |
||
22 | class Ignore |
||
23 | { |
||
24 | /** |
||
25 | * Open php part ignored by php interpreter. |
||
26 | * All php code after this tag and before `close` tag will be treated as plain text. |
||
27 | * It will not be interpreted by php. |
||
28 | * @todo Implement this |
||
29 | */ |
||
30 | public static function open() |
||
34 | |||
35 | /** |
||
36 | * Close php part ignored by php interpreter. |
||
37 | * @todo Implement this |
||
38 | */ |
||
39 | public static function close() |
||
43 | } |
||
44 |