| 1 | <?php |
||
| 5 | class RaggettInternalPHP extends RaggettBase { |
||
| 6 | /** |
||
| 7 | * Use the HTML tidy extension to use the tidy library in-process, |
||
| 8 | * saving the overhead of spawning a new process. |
||
| 9 | * |
||
| 10 | * @param string $text HTML to check |
||
| 11 | * @param bool $stderr Whether to read result from error status instead of output |
||
| 12 | * @param int &$retval Exit code (-1 on internal error) |
||
| 13 | * @return string|null |
||
| 14 | */ |
||
| 15 | protected function cleanWrapped( $text, $stderr = false, &$retval = null ) { |
||
| 48 | |||
| 49 | public function supportsValidate() { |
||
| 52 | } |
||
| 53 |
An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.