1 | <?php |
||
13 | class ModuleOptions extends AbstractOptions |
||
14 | { |
||
15 | /** |
||
16 | * @var array |
||
17 | */ |
||
18 | protected $idGenerators; |
||
19 | /** |
||
20 | * @var array |
||
21 | */ |
||
22 | protected $strategies; |
||
23 | /** |
||
24 | * @var array |
||
25 | */ |
||
26 | protected $storageAdapter; |
||
27 | /** |
||
28 | * @var bool |
||
29 | */ |
||
30 | protected $cacheResponse = true; |
||
31 | /** |
||
32 | * @var string |
||
33 | */ |
||
34 | protected $idGenerator = 'requesturi'; |
||
35 | /** |
||
36 | * @var bool |
||
37 | */ |
||
38 | protected $addDebugHeaders = true; |
||
39 | 8 | ||
40 | /** |
||
41 | 8 | * @return boolean |
|
42 | */ |
||
43 | public function getCacheResponse() |
||
47 | 2 | ||
48 | /** |
||
49 | 2 | * @param boolean $cacheResponse |
|
50 | 2 | */ |
|
51 | public function setCacheResponse($cacheResponse) |
||
55 | 1 | ||
56 | /** |
||
57 | 1 | * @return string |
|
58 | */ |
||
59 | public function getIdGenerator() |
||
63 | 1 | ||
64 | /** |
||
65 | 1 | * @param string $idGenerator |
|
66 | 1 | */ |
|
67 | public function setIdGenerator($idGenerator) |
||
71 | |||
72 | /** |
||
73 | * @return array |
||
74 | */ |
||
75 | public function getIdGenerators() |
||
79 | |||
80 | /** |
||
81 | * @param array $idGenerators |
||
82 | */ |
||
83 | public function setIdGenerators($idGenerators) |
||
87 | 1 | ||
88 | /** |
||
89 | 1 | * @return array |
|
90 | */ |
||
91 | public function getStorageAdapter() |
||
95 | 1 | ||
96 | /** |
||
97 | 1 | * @param array $storageAdapter |
|
98 | 1 | */ |
|
99 | public function setStorageAdapter(array $storageAdapter) |
||
103 | 1 | ||
104 | /** |
||
105 | 1 | * @return array |
|
106 | */ |
||
107 | public function getStrategies() |
||
111 | 1 | ||
112 | /** |
||
113 | 1 | * @param array $strategies |
|
114 | 1 | */ |
|
115 | public function setStrategies(array $strategies) |
||
119 | |||
120 | /** |
||
121 | * @return bool |
||
122 | */ |
||
123 | public function isAddDebugHeaders() |
||
127 | |||
128 | /** |
||
129 | * @param bool $addDebugHeaders |
||
130 | */ |
||
131 | public function setAddDebugHeaders($addDebugHeaders) |
||
135 | } |
||
136 |