Limit Process

This example shows the usage of Limit process

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

->pipe(new Limit(
    array(2,0)
))
nameincome
John $50,000
Marry $60,000
Description