for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Cauditor\Runners;
/**
* @author Matthias Mullie <[email protected]>
* @copyright Copyright (c) 2016, Matthias Mullie. All rights reserved.
* @license LICENSE MIT
*/
class Help implements RunnerInterface
{
public function execute()
echo "Usage: cauditor [-ah] [path]\n\n",
" --all Analyzes all missing commits (instead of only the current).\n",
" --help Prints this help message.\n",
" --path=<dir> Analyze a specific directory (instead of pwd).\n";
}