1 | <?php |
||
19 | abstract class AbstractDirective implements DirectiveInterface |
||
20 | { |
||
21 | private $name; |
||
22 | |||
23 | private $availability; |
||
24 | |||
25 | private $value; |
||
26 | |||
27 | private $context; |
||
28 | |||
29 | public function __construct($name, $value) |
||
34 | |||
35 | public function getName() |
||
39 | |||
40 | public function getAvailabilty() |
||
44 | |||
45 | public function getValue() |
||
49 | |||
50 | public function getContext() |
||
54 | } |
||
55 |