Page MenuHomestyx hydra

PhabricatorOAuthServerScope.php
No OneTemporary

PhabricatorOAuthServerScope.php

<?php
final class PhabricatorOAuthServerScope extends Phobject {
public static function getScopeMap() {
return array();
}
public static function filterScope(array $scope) {
$valid_scopes = self::getScopeMap();
foreach ($scope as $key => $scope_item) {
if (!isset($valid_scopes[$scope_item])) {
unset($scope[$key]);
}
}
return $scope;
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Dec 16, 1:58 AM (1 d, 17 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
461183
Default Alt Text
PhabricatorOAuthServerScope.php (392 B)

Event Timeline