1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02: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(
'grant_type' => 'authorization_code',
);
}
public function decodeTokenResponse($response) {
$decoded = json_decode($response, true);
if (!is_array($decoded)) {

View file

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

View file

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

View file

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

View file

@ -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);

View file

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