1 | <?php |
||
11 | class DateFormat implements Processor |
||
12 | { |
||
13 | use Processor\Implementation; |
||
14 | |||
15 | /** |
||
16 | * Class constructor |
||
17 | * |
||
18 | * @param string $property Property key with the processing instruction |
||
19 | */ |
||
20 | public function __construct($property) |
||
24 | |||
25 | /** |
||
26 | * Apply processing to a single node |
||
27 | * |
||
28 | * @param Node $node |
||
29 | */ |
||
30 | public function applyToNode(Node $node) |
||
52 | } |
||
53 |