| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 4 | ||
| Bugs | 0 | Features | 3 |
| 1 | <?php |
||
| 12 | public function execute() |
||
| 13 | { |
||
| 14 | echo "Usage: cauditor [options]\n\n", |
||
| 15 | "Commit Options: (default = analyze latest commit)\n\n", |
||
| 16 | " -a|--all Analyzes all missing commits.\n", |
||
| 17 | " -c|--commits=<hash> Analyze specific (comma-separated list of) commits.\n\n", |
||
| 18 | "Repo Options: (default = analyze default branch of repo in `pwd`)\n\n", |
||
| 19 | " -r|--repo=<uri> Analyze a specific repo.\n", |
||
| 20 | " -b|--branch=<branch> Analyze a specific branch.\n", |
||
| 21 | " -p|--path=<dir> Analyze a specific directory.\n\n", |
||
| 22 | "Miscellaneous:\n\n", |
||
| 23 | " -t|--target Cauditor API to push to.\n", |
||
| 24 | " -h|--help Prints this help message.\n"; |
||
| 25 | } |
||
| 26 | } |
||
| 27 |