1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-09 22:31:03 +01:00

Fix whitespace around methods

This commit is contained in:
Jakub Vrana 2013-04-23 09:41:46 -07:00
parent 4767068ab7
commit 141233565a
6 changed files with 6 additions and 2 deletions

View file

@ -14,8 +14,8 @@ extends PhabricatorOAuthProvider {
return array( return array(
'grant_type' => 'authorization_code', 'grant_type' => 'authorization_code',
); );
} }
public function decodeTokenResponse($response) { public function decodeTokenResponse($response) {
$decoded = json_decode($response, true); $decoded = json_decode($response, true);
if (!is_array($decoded)) { if (!is_array($decoded)) {

View file

@ -14,6 +14,7 @@ final class DifferentialLintFieldSpecification
public function renderValueForDiffView() { public function renderValueForDiffView() {
return $this->renderValueForRevisionView(); return $this->renderValueForRevisionView();
} }
public function shouldAppearOnRevisionView() { public function shouldAppearOnRevisionView() {
return true; return true;
} }

View file

@ -20,6 +20,7 @@ final class PhabricatorFeedStoryPublisher {
$this->subscribedPHIDs = $phids; $this->subscribedPHIDs = $phids;
return $this; return $this;
} }
public function setPrimaryObjectPHID($phid) { public function setPrimaryObjectPHID($phid) {
$this->primaryObjectPHID = $phid; $this->primaryObjectPHID = $phid;
return $this; return $this;

View file

@ -11,6 +11,7 @@ abstract class PhabricatorOwnersController extends PhabricatorController {
$this->filter = $filter; $this->filter = $filter;
return $this; return $this;
} }
public function buildStandardPageResponse($view, array $data) { public function buildStandardPageResponse($view, array $data) {
$page = $this->buildStandardPageView(); $page = $this->buildStandardPageView();

View file

@ -130,8 +130,8 @@ final class PhabricatorRepository extends PhabricatorRepositoryDAO
$args = func_get_args(); $args = func_get_args();
$args = $this->formatLocalCommand($args); $args = $this->formatLocalCommand($args);
return newv('ExecFuture', $args); return newv('ExecFuture', $args);
} }
public function passthruLocalCommand($pattern /* , $arg, ... */) { public function passthruLocalCommand($pattern /* , $arg, ... */) {
$args = func_get_args(); $args = func_get_args();
$args = $this->formatLocalCommand($args); $args = $this->formatLocalCommand($args);

View file

@ -12,6 +12,7 @@ final class AphrontFormTextControl extends AphrontFormControl {
private function getDisableAutocomplete() { private function getDisableAutocomplete() {
return $this->disableAutocomplete; return $this->disableAutocomplete;
} }
public function getSigil() { public function getSigil() {
return $this->sigil; return $this->sigil;
} }