Merge pull request #4999 from totten/master-autosave
[civicrm-core.git] / Civi / CiUtil / CSVParser.php
index 46712d8d4e9343f93ff65795e11ffb5217f1e7d6..05893dfda0096039392438f77c04cff01a24fc03 100644 (file)
@@ -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+');