Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public function comeGetSum() {
  2. return array_reduce( $this->Items, function( $Value, $Item ) {
  3. $Value += $Item['Price'];
  4. return $Value;
  5. });
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement