| 1 | <?php |
||
| 9 | class Groundskeeper implements LoggerAwareInterface |
||
| 10 | { |
||
| 11 | /** @var Configuration */ |
||
| 12 | private $configuration; |
||
| 13 | |||
| 14 | /** @var null|LoggerInterface */ |
||
| 15 | private $logger; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Constructor |
||
| 19 | * |
||
| 20 | * @param array|Configuration $options |
||
| 21 | */ |
||
| 22 | 17 | public function __construct($options = array()) |
|
| 37 | |||
| 38 | 15 | public function clean($html) |
|
| 54 | |||
| 55 | 1 | public function getConfiguration() |
|
| 59 | |||
| 60 | 16 | public function setLogger(LoggerInterface $logger) |
|
| 64 | } |
||
| 65 |