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:
parent
2bcdaad16c
commit
8a03a73e95
3 changed files with 4 additions and 6 deletions
|
@ -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) {
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -33,4 +33,4 @@ final class CelerityAPI {
|
|||
return self::$response;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue