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, Feb 24, 11:08 PM (11 h, 55 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
840259
Default Alt Text
PhabricatorOAuthServerScope.php (392 B)

Event Timeline