mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-10 00:42:40 +01:00
Various linter fixes
Summary: Fixed various linter issues that were identified by running `arc lint --everything`. - Removed trailing whitespace. - Added newline at EOF. - Added whitespace after `if` statement Test Plan: N/A Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley CC: aurelijus, Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D8337
This commit is contained in:
parent
a11421ee8e
commit
9fbf316d38
3 changed files with 3 additions and 3 deletions
|
@ -58,7 +58,7 @@ final class PhpunitTestEngine extends ArcanistBaseUnitTestEngine {
|
||||||
$futures = array();
|
$futures = array();
|
||||||
$tmpfiles = array();
|
$tmpfiles = array();
|
||||||
foreach ($this->affectedTests as $class_path => $test_path) {
|
foreach ($this->affectedTests as $class_path => $test_path) {
|
||||||
if(!Filesystem::pathExists($test_path)) {
|
if (!Filesystem::pathExists($test_path)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$json_tmp = new TempFile();
|
$json_tmp = new TempFile();
|
||||||
|
|
Loading…
Reference in a new issue