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

Apply some autofix linter rules

Summary: Self-explanatory

Test Plan: Eyeball it.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D10453
This commit is contained in:
Joshua Spence 2014-09-10 06:33:31 +10:00
parent 04de931151
commit 38502ba910
5 changed files with 6 additions and 14 deletions

View file

@ -1,5 +1,4 @@
<?php
final class ArcanistUncommittedChangesException extends ArcanistUsageException {
}
final class ArcanistUncommittedChangesException
extends ArcanistUsageException {}

View file

@ -58,9 +58,7 @@ final class ArcanistLintPatcher {
}
}
private function __construct() {
}
private function __construct() {}
private function buildModifiedFile() {
$data = $this->getUnmodifiedFileContent();

View file

@ -66,9 +66,7 @@ abstract class ArcanistLintEngine {
private $linterResources = array();
public function __construct() {
}
public function __construct() {}
final public function setConfigurationManager(
ArcanistConfigurationManager $configuration_manager) {

View file

@ -34,9 +34,7 @@ abstract class ArcanistUnitTestEngine {
return false;
}
final public function __construct() {
}
final public function __construct() {}
public function setConfigurationManager(
ArcanistConfigurationManager $configuration_manager) {

View file

@ -136,8 +136,7 @@ EOTEXT
$command,
$name);
}
} catch (ConduitClientException $ex) {
}
} catch (ConduitClientException $ex) {}
}
}