1 | <?php |
||
10 | class ConfigurationBuilder implements ConfigurationBuilderInterface |
||
11 | { |
||
12 | /* |
||
13 | * @var Configuration configuration |
||
14 | */ |
||
15 | |||
16 | private $configuration; |
||
17 | |||
18 | 15 | public function __construct() |
|
22 | |||
23 | /** |
||
24 | * |
||
25 | * @param type $baseTemplate |
||
26 | * @return ConfigurationBuilder |
||
27 | */ |
||
28 | 15 | public function setBaseTemplate($baseTemplate) |
|
33 | |||
34 | /** |
||
35 | * |
||
36 | * @param type $bundleViews |
||
37 | * @return $this |
||
38 | */ |
||
39 | 15 | public function setBundleViews($bundleViews) |
|
44 | |||
45 | /** |
||
46 | * |
||
47 | * @param type $filterType |
||
48 | * @return $this |
||
49 | */ |
||
50 | 15 | public function setFilterType($filterType) |
|
55 | |||
56 | /** |
||
57 | * |
||
58 | * @param type $withoutBulk |
||
59 | * @return $this |
||
60 | */ |
||
61 | 15 | public function setWithoutBulk($withoutBulk) |
|
66 | |||
67 | /** |
||
68 | * |
||
69 | * @param type $withoutShow |
||
70 | * @return $this |
||
71 | */ |
||
72 | 15 | public function setWithoutShow($withoutShow) |
|
77 | |||
78 | /** |
||
79 | * |
||
80 | * @param type $withoutWrite |
||
81 | * @return $this |
||
82 | */ |
||
83 | 15 | public function setWithoutWrite($withoutWrite) |
|
88 | |||
89 | 15 | public function setFormat($format) |
|
94 | |||
95 | 15 | public function setOverwrite($overwrite) |
|
100 | |||
101 | 15 | public function setRoutePrefix($routePrefix) |
|
106 | |||
107 | 15 | public function setWithoutPageSize($withoutPageSize) |
|
112 | |||
113 | 15 | public function setWithoutSorting($withoutSorting) |
|
118 | |||
119 | /** |
||
120 | * |
||
121 | * @return Configuration |
||
122 | */ |
||
123 | 15 | public function getConfiguration() |
|
127 | |||
128 | } |
||
129 |