Explorar el Código

CsvGenerator

master
Guillaume hace 4 años
padre
commit
063056ddb5
Se han modificado 1 ficheros con 7 adiciones y 3 borrados
  1. +7
    -3
      ShopBundle/Services/CsvGenerator.php

+ 7
- 3
ShopBundle/Services/CsvGenerator.php Ver fichero

@@ -61,9 +61,13 @@ class CsvGenerator

public function encodeArray($array)
{
return array_map(function($value) {
return $this->encode($value) ;
}, $array) ;
if($array && is_array($array)) {
return array_map(function($value) {
return $this->encode($value) ;
}, $array) ;
}

return $array ;
}

public function setTitle($title, $displayHeader = false){

Cargando…
Cancelar
Guardar