Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php final class PhabricatorOAuthServerScope extends Phobject { public static functio..
Decoded Output download
<?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;
}
}
?>
Did this file decode correctly?
Original Code
<?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;
}
}
Function Calls
None |
Stats
MD5 | aed47a023fc93c1d13d8cc34cf6d7cfb |
Eval Count | 0 |
Decode Time | 104 ms |