loadCSV($fileName); } private function loadCSV(string $fileName) { if (($gestor = fopen($fileName, "r")) !== FALSE) { $this->csv = []; while (($datos = fgetcsv($gestor, 1000, ",")) !== FALSE) { $this->csv[] = $datos; } fclose($gestor); } } public function setCSV($csv): IGitTop100CSV { $this->csv = $csv; return $this; } public function getCSV(): ?array { return $this->csv; } }