AppendRow Process
Add one additional row
| name | income |
|---|---|
| John | 50,000 |
| Marry | 60,000 |
| Peter | 100,000 |
| Donald | 80,000 |
->pipe(new AppendRow(array(
array("name"=>"Added: David Winterburn", "income"=>90000)
)))
| name | income |
|---|---|
| John | 50,000 |
| Marry | 60,000 |
| Peter | 100,000 |
| Donald | 80,000 |
| Added: David Winterburn | 90,000 |