Merge pull request #14154 from greenpeace-cee/fix-quicksearch-font
[civicrm-core.git] / Civi / CiUtil / CSVParser.php
index e09f7992951d11184697569b57f913d68f351f9e..f48521fde75b7d25614a4fb58aba1ceeb0226419 100644 (file)
@@ -11,14 +11,15 @@ class CSVParser {
    *   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+');
     fwrite($fh, $csvContent);
     rewind($fh);
 
-    $results = array();
+    $results = [];
     while (($r = fgetcsv($fh)) !== FALSE) {
       $name = str_replace('.', '::', trim($r[0]));
       $status = trim($r[1]);