Skip to content

Commit

Permalink
fix EOF newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
dktapps committed Feb 14, 2018
1 parent 96fa93a commit 2d90902
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/DevTools/ConsoleScript.php
Expand Up @@ -161,4 +161,4 @@ function preg_quote_array(array $strings, string $delim = null) : array{
$phar->stopBuffering();

echo PHP_EOL . "Done in " . round(microtime(true) - $start, 3) . "s" . PHP_EOL;
exit(0);
exit(0);
2 changes: 1 addition & 1 deletion src/DevTools/DevTools.php
Expand Up @@ -288,4 +288,4 @@ private function buildPhar(CommandSender $sender, string $pharPath, string $base
$sender->sendMessage("[DevTools] Done in " . round(microtime(true) - $start, 3) . "s");
}

}
}
2 changes: 1 addition & 1 deletion src/DevTools/commands/DevToolsCommand.php
Expand Up @@ -35,4 +35,4 @@ public function __construct(string $name, DevTools $plugin){
public function getPlugin() : Plugin{
return $this->owningPlugin;
}
}
}
2 changes: 1 addition & 1 deletion src/DevTools/commands/ExtractPluginCommand.php
Expand Up @@ -79,4 +79,4 @@ public function execute(CommandSender $sender, string $commandLabel, array $args
$sender->sendMessage("Source plugin " . $description->getName() . " v" . $description->getVersion() . " has been created on " . $folderPath);
return true;
}
}
}

0 comments on commit 2d90902

Please sign in to comment.