File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class CSVParser extends BaseParser implements IParser
3535 */
3636 public function loadFile ($ file_path ){
3737
38- if (!$ this ->isFileOk ) {
38+ if (!$ this ->isFileOk ( $ file_path ) ) {
3939 return ;
4040 }
4141
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ private function parseDOM($html){
6969 */
7070 public function loadFile ($ file_path ) {
7171
72- if (!$ this ->isFileOk ) {
72+ if (!$ this ->isFileOk ( $ file_path ) ) {
7373 return ;
7474 }
7575
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class JSONParser extends BaseParser implements IParser
2727 */
2828 public function loadFile ($ file_path ) {
2929
30- if (!$ this ->isFileOk ) {
30+ if (!$ this ->isFileOk ( $ file_path ) ) {
3131 return ;
3232 }
3333
Original file line number Diff line number Diff line change @@ -298,7 +298,7 @@ private function parseDOM($xml){
298298 */
299299 public function loadFile ($ file_path ) {
300300
301- if (!$ this ->isFileOk ) {
301+ if (!$ this ->isFileOk ( $ file_path ) ) {
302302 return ;
303303 }
304304
You can’t perform that action at this time.
0 commit comments