cleanUp(); return $this->result; } protected function readRow( ) { $this->row = fgetcsv( $this->file, 0, $this->delimiter ); } protected function isEmptyColumn( $val ){ return $val == ''; } protected function setResult( ){ $this->result[] = $this->row; } }