X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=Civi%2FCiUtil%2FCSVParser.php;h=05893dfda0096039392438f77c04cff01a24fc03;hb=c639adaa84c101ed1952c4b52284e80561c82c8c;hp=46712d8d4e9343f93ff65795e11ffb5217f1e7d6;hpb=397d0aec7771968e6ad649229f9a72c9c0e9b12c;p=civicrm-core.git diff --git a/Civi/CiUtil/CSVParser.php b/Civi/CiUtil/CSVParser.php index 46712d8d4e..05893dfda0 100644 --- a/Civi/CiUtil/CSVParser.php +++ b/Civi/CiUtil/CSVParser.php @@ -7,10 +7,12 @@ namespace Civi\CiUtil; class CSVParser { /** - * @param string $csvContent content; each row in the row csv should start with two cells: + * @param string $csvContent + * Content; each row in the row csv should start with two cells:. * - cell 0: the test name * - cell 1: the test status - * @return array (string $testName => string $status) + * @return array + * (string $testName => string $status) */ public static function parseResults($csvContent) { $fh = fopen('php://memory', 'r+');