mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-09 14:21:02 +01:00
Fix whitespace around methods
This commit is contained in:
parent
4767068ab7
commit
141233565a
6 changed files with 6 additions and 2 deletions
|
@ -14,8 +14,8 @@ extends PhabricatorOAuthProvider {
|
|||
return array(
|
||||
'grant_type' => 'authorization_code',
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
public function decodeTokenResponse($response) {
|
||||
$decoded = json_decode($response, true);
|
||||
if (!is_array($decoded)) {
|
||||
|
|
|
@ -14,6 +14,7 @@ final class DifferentialLintFieldSpecification
|
|||
public function renderValueForDiffView() {
|
||||
return $this->renderValueForRevisionView();
|
||||
}
|
||||
|
||||
public function shouldAppearOnRevisionView() {
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -20,6 +20,7 @@ final class PhabricatorFeedStoryPublisher {
|
|||
$this->subscribedPHIDs = $phids;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function setPrimaryObjectPHID($phid) {
|
||||
$this->primaryObjectPHID = $phid;
|
||||
return $this;
|
||||
|
|
|
@ -11,6 +11,7 @@ abstract class PhabricatorOwnersController extends PhabricatorController {
|
|||
$this->filter = $filter;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function buildStandardPageResponse($view, array $data) {
|
||||
|
||||
$page = $this->buildStandardPageView();
|
||||
|
|
|
@ -130,8 +130,8 @@ final class PhabricatorRepository extends PhabricatorRepositoryDAO
|
|||
$args = func_get_args();
|
||||
$args = $this->formatLocalCommand($args);
|
||||
return newv('ExecFuture', $args);
|
||||
|
||||
}
|
||||
|
||||
public function passthruLocalCommand($pattern /* , $arg, ... */) {
|
||||
$args = func_get_args();
|
||||
$args = $this->formatLocalCommand($args);
|
||||
|
|
|
@ -12,6 +12,7 @@ final class AphrontFormTextControl extends AphrontFormControl {
|
|||
private function getDisableAutocomplete() {
|
||||
return $this->disableAutocomplete;
|
||||
}
|
||||
|
||||
public function getSigil() {
|
||||
return $this->sigil;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue