Fix visiblity of LiskDAO::getConfiguration()
Summary: Ref T6822. Test Plan: `grep` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: hach-que, Korvin, epriestley Maniphest Tasks: T6822 Differential Revision: https://secure.phabricator.com/D11370
This commit is contained in:
@@ -17,7 +17,7 @@ final class PhabricatorOAuthClientAuthorization
|
||||
return implode(' ', $scopes);
|
||||
}
|
||||
|
||||
public function getConfiguration() {
|
||||
protected function getConfiguration() {
|
||||
return array(
|
||||
self::CONFIG_AUX_PHID => true,
|
||||
self::CONFIG_SERIALIZATION => array(
|
||||
|
||||
@@ -8,7 +8,7 @@ final class PhabricatorOAuthServerAccessToken
|
||||
protected $userPHID;
|
||||
protected $clientPHID;
|
||||
|
||||
public function getConfiguration() {
|
||||
protected function getConfiguration() {
|
||||
return array(
|
||||
self::CONFIG_COLUMN_SCHEMA => array(
|
||||
'token' => 'text32',
|
||||
|
||||
@@ -10,7 +10,7 @@ final class PhabricatorOAuthServerAuthorizationCode
|
||||
protected $userPHID;
|
||||
protected $redirectURI;
|
||||
|
||||
public function getConfiguration() {
|
||||
protected function getConfiguration() {
|
||||
return array(
|
||||
self::CONFIG_COLUMN_SCHEMA => array(
|
||||
'code' => 'text32',
|
||||
|
||||
@@ -27,7 +27,7 @@ final class PhabricatorOAuthServerClient
|
||||
->setSecret(Filesystem::readRandomCharacters(32));
|
||||
}
|
||||
|
||||
public function getConfiguration() {
|
||||
protected function getConfiguration() {
|
||||
return array(
|
||||
self::CONFIG_AUX_PHID => true,
|
||||
self::CONFIG_COLUMN_SCHEMA => array(
|
||||
|
||||
Reference in New Issue
Block a user