| 1 | <?php |
||
| 21 | abstract class AbstractScopeContext implements ScopeContextInterface |
||
| 22 | { |
||
| 23 | protected $scopeOwners = []; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | public function getScopesOwners(): array |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | public function setScopeOwner(string $scope, SettingsOwnerInterface $owner) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @param string $scope |
||
| 47 | * |
||
| 48 | * @return SettingsOwnerInterface|bool |
||
| 49 | */ |
||
| 50 | public function getScopeOwner(string $scope) |
||
| 58 | } |
||
| 59 |