Merge pull request #20003 from nextcloud/enh/19989/type-additional-scoes
Annotate $additionalScopes so the IDE knows what type $scopeCandidate is
This commit is contained in:
commit
570f3c7798
|
@ -163,6 +163,10 @@ class Manager implements IManager {
|
||||||
return $operations;
|
return $operations;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $operationClass
|
||||||
|
* @return ScopeContext[]
|
||||||
|
*/
|
||||||
public function getAllConfiguredScopesForOperation(string $operationClass): array {
|
public function getAllConfiguredScopesForOperation(string $operationClass): array {
|
||||||
static $scopesByOperation = [];
|
static $scopesByOperation = [];
|
||||||
if (isset($scopesByOperation[$operationClass])) {
|
if (isset($scopesByOperation[$operationClass])) {
|
||||||
|
|
|
@ -134,9 +134,9 @@ class RuleMatcher implements IRuleMatcher {
|
||||||
}
|
}
|
||||||
|
|
||||||
if($this->entity instanceof IEntity) {
|
if($this->entity instanceof IEntity) {
|
||||||
|
/** @var ScopeContext[] $additionalScopes */
|
||||||
$additionalScopes = $this->manager->getAllConfiguredScopesForOperation($class);
|
$additionalScopes = $this->manager->getAllConfiguredScopesForOperation($class);
|
||||||
foreach ($additionalScopes as $hash => $scopeCandidate) {
|
foreach ($additionalScopes as $hash => $scopeCandidate) {
|
||||||
/** @var ScopeContext $scopeCandidate */
|
|
||||||
if ($scopeCandidate->getScope() !== IManager::SCOPE_USER || in_array($scopeCandidate, $scopes)) {
|
if ($scopeCandidate->getScope() !== IManager::SCOPE_USER || in_array($scopeCandidate, $scopes)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue