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:
parent
04de931151
commit
38502ba910
5 changed files with 6 additions and 14 deletions
|
@ -1,5 +1,4 @@
|
|||
<?php
|
||||
|
||||
final class ArcanistUncommittedChangesException extends ArcanistUsageException {
|
||||
|
||||
}
|
||||
final class ArcanistUncommittedChangesException
|
||||
extends ArcanistUsageException {}
|
||||
|
|
|
@ -58,9 +58,7 @@ final class ArcanistLintPatcher {
|
|||
}
|
||||
}
|
||||
|
||||
private function __construct() {
|
||||
|
||||
}
|
||||
private function __construct() {}
|
||||
|
||||
private function buildModifiedFile() {
|
||||
$data = $this->getUnmodifiedFileContent();
|
||||
|
|
|
@ -66,9 +66,7 @@ abstract class ArcanistLintEngine {
|
|||
|
||||
private $linterResources = array();
|
||||
|
||||
public function __construct() {
|
||||
|
||||
}
|
||||
public function __construct() {}
|
||||
|
||||
final public function setConfigurationManager(
|
||||
ArcanistConfigurationManager $configuration_manager) {
|
||||
|
|
|
@ -34,9 +34,7 @@ abstract class ArcanistUnitTestEngine {
|
|||
return false;
|
||||
}
|
||||
|
||||
final public function __construct() {
|
||||
|
||||
}
|
||||
final public function __construct() {}
|
||||
|
||||
public function setConfigurationManager(
|
||||
ArcanistConfigurationManager $configuration_manager) {
|
||||
|
|
|
@ -136,8 +136,7 @@ EOTEXT
|
|||
$command,
|
||||
$name);
|
||||
}
|
||||
} catch (ConduitClientException $ex) {
|
||||
}
|
||||
} catch (ConduitClientException $ex) {}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue