1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 08:52:39 +01:00

Fix some brace lint stuff.

Summary: New brace linter picked these up (see D755).
Test Plan: Visual inspection.
Reviewed By: jungejason
Reviewers: jungejason, tuomaspelkonen, aran
CC: aran, jungejason
Differential Revision: 756
This commit is contained in:
epriestley 2011-08-01 13:46:25 -07:00
parent 2bcdaad16c
commit 8a03a73e95
3 changed files with 4 additions and 6 deletions

View file

@ -30,7 +30,7 @@ class PhabricatorCountdownEditController
$user = $request->getUser();
$action_label = 'Create Timer';
if ($this->id) {
if ($this->id) {
$timer = id(new PhabricatorTimer())->load($this->id);
// If no timer is found
if (!$timer) {

View file

@ -134,13 +134,11 @@ abstract class DiffusionFileContentQuery {
abstract protected function tokenizeLine($line);
public function setNeedsBlame($needs_blame)
{
public function setNeedsBlame($needs_blame) {
$this->needsBlame = $needs_blame;
}
public function getNeedsBlame()
{
public function getNeedsBlame() {
return $this->needsBlame;
}
}

View file

@ -33,4 +33,4 @@ final class CelerityAPI {
return self::$response;
}
}
}