1
0
Fork 0
mirror of synced 2024-06-02 02:44:47 +12:00

feat: apply parse method if filter is present

This commit is contained in:
Christy Jacob 2020-12-30 00:42:32 +05:30
parent cebd016282
commit c508657a50

View file

@ -293,6 +293,10 @@ class Response extends SwooleResponse
}
$item = $this->output($item, $rule['type']);
// If filter is set, parse the item
if(self::isFilter()){
$item = self::getFilter()->parse($item, $rule['type']);
}
}
}
}