1
0
Fork 0
mirror of synced 2024-06-29 03:30:34 +12:00

feat: parse file list

This commit is contained in:
Christy Jacob 2020-12-29 01:09:22 +05:30
parent 54f40c8ce2
commit 450c3e6f88

View file

@ -25,6 +25,10 @@ class V06 extends Filter {
$parsedResponse = $this->parseFile($content);
break;
case Response::MODEL_FILE_LIST :
$parsedResponse = $content;
break;
case Response::MODEL_USER :
$parsedResponse = $this->parseUser($content);
break;