1 | <?php |
||
18 | abstract class AbstractElement implements Element |
||
19 | { |
||
20 | /** |
||
21 | * @var array |
||
22 | */ |
||
23 | private $options; |
||
24 | |||
25 | /** |
||
26 | * @var array |
||
27 | */ |
||
28 | private $unresolvedOptions; |
||
29 | |||
30 | /** |
||
31 | * @param array $options |
||
32 | */ |
||
33 | public function __construct(array $options = []) |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function getRouteParameters() |
||
47 | |||
48 | /** |
||
49 | * {@inheritdoc} |
||
50 | */ |
||
51 | public function getOption($name) |
||
64 | |||
65 | /** |
||
66 | * {@inheritdoc} |
||
67 | */ |
||
68 | public function getOptions() |
||
73 | |||
74 | /** |
||
75 | * {@inheritdoc} |
||
76 | */ |
||
77 | public function hasOption($name) |
||
82 | |||
83 | private function resolveOptions() |
||
92 | } |
||
93 |