1 | <?php |
||
19 | abstract class Behavior |
||
20 | { |
||
21 | private $owner; |
||
22 | |||
23 | private $options; |
||
24 | |||
25 | public function __construct(array $options = array()) |
||
29 | |||
30 | protected function getOption($name) |
||
34 | |||
35 | /** |
||
36 | * @param Document $owner |
||
37 | */ |
||
38 | public function setOwner($owner) |
||
43 | |||
44 | /** |
||
45 | * @return Document |
||
46 | */ |
||
47 | protected function getOwner() |
||
51 | } |
||
52 |