1
0
Fork 0
mirror of synced 2024-07-03 05:31:38 +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); $parsedResponse = $this->parseFile($content);
break; break;
case Response::MODEL_FILE_LIST :
$parsedResponse = $content;
break;
case Response::MODEL_USER : case Response::MODEL_USER :
$parsedResponse = $this->parseUser($content); $parsedResponse = $this->parseUser($content);
break; break;