fix typo
[civicrm-core.git] / Civi / CiUtil / Command / LsCommand.php
CommitLineData
f03dc6b0
TO
1<?php
2namespace Civi\CiUtil\Command;
3
b896fa44
EM
4/**
5 * Class LsCommand
6 *
7 * @package Civi\CiUtil\Command
8 */
f03dc6b0 9class LsCommand {
34f3bbd9 10
7fe37828
EM
11 /**
12 * @param $argv
13 */
00be9182 14 public static function main($argv) {
f03dc6b0
TO
15 $paths = $argv;
16 array_shift($paths);
17 foreach (\Civi\CiUtil\PHPUnitScanner::findTestsByPath($paths) as $test) {
18 printf("%s %s %s\n", $test['file'], $test['class'], $test['method']);
19 }
20 }
96025800 21
ef10e0b5 22}