Skip to content

Commit

Permalink
Various linter fixes
Browse files Browse the repository at this point in the history
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
  • Loading branch information
joshuaspence authored and epriestley committed Feb 25, 2014
1 parent a11421e commit 9fbf316
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/test/diverse_symbols.php.example
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ exit($x);
include($x);
include_once($x);
require($x);
require_once($x);
require_once($x);
2 changes: 1 addition & 1 deletion src/lint/linter/ArcanistScriptAndRegexLinter.php
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public function getLinterName() {
public function getLinterConfigurationName() {
return 'script-and-regex';
}

/* -( Parsing Output )----------------------------------------------------- */


Expand Down
2 changes: 1 addition & 1 deletion src/unit/engine/PhpunitTestEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function run() {
$futures = array();
$tmpfiles = array();
foreach ($this->affectedTests as $class_path => $test_path) {
if(!Filesystem::pathExists($test_path)) {
if (!Filesystem::pathExists($test_path)) {
continue;
}
$json_tmp = new TempFile();
Expand Down

0 comments on commit 9fbf316

Please sign in to comment.