1 | <?php |
||
13 | trait MultitenantEndpointBuilderTrait |
||
14 | { |
||
15 | protected int $tenantMask; |
||
|
|||
16 | |||
17 | /** {@inheritDoc} */ |
||
18 | public function exportTo(int $tenantMask) |
||
19 | { |
||
20 | $this->tenantMask = $tenantMask; |
||
21 | |||
22 | return $this; |
||
23 | } |
||
24 | |||
25 | protected function buildTenants(EndpointConfigurationInterface $configuration): void |
||
26 | { |
||
27 | $configuration->set('tenantMask', $this->tenantMask); |
||
28 | } |
||
29 | } |
||
30 |