1 | <?php |
||
30 | class GeometryComponent extends ComponentAbstract implements GeometryCMPTIF |
||
31 | { |
||
32 | |||
33 | /** |
||
34 | * Initialize Component |
||
35 | * |
||
36 | * {@inheritdoc} |
||
37 | * |
||
38 | * @return bool |
||
39 | */ |
||
40 | 38 | public function initializeComponent(): bool |
|
45 | |||
46 | /** |
||
47 | * Set geometry primitive |
||
48 | * |
||
49 | * {@inheritdoc} |
||
50 | * |
||
51 | * @param string $primitive |
||
52 | * @throws InvalidComponentArgumentException |
||
53 | * @return GeometryCMPTIF |
||
54 | */ |
||
55 | 36 | public function primitive(string $primitive): GeometryCMPTIF |
|
70 | |||
71 | /** |
||
72 | * Set Buffer |
||
73 | * |
||
74 | * {@inheritdoc} |
||
75 | * |
||
76 | * @param bool $buffer |
||
77 | * @return GeometryCMPTIF |
||
78 | */ |
||
79 | 1 | public function buffer(bool $buffer = true): GeometryCMPTIF |
|
84 | |||
85 | /** |
||
86 | * skipCache |
||
87 | * |
||
88 | * {@inheritdoc} |
||
89 | * |
||
90 | * @param bool $skipCache |
||
91 | * @return GeometryCMPTIF |
||
92 | */ |
||
93 | 1 | public function skipCache(bool $skipCache = false): GeometryCMPTIF |
|
98 | } |
||
99 |