Filter Process

This example shows the usage of Filter process

nameincome
John $50,000
Marry $60,000
Peter $100,000
Donald $80,000

->pipe(new Filter(array(
    array("income",">",70000)
)))
nameincome
Peter $100,000
Donald $80,000
Description