Advertisement
Guest User

Untitled

a guest
Apr 19th, 2015
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public function getProduto($id)
  2. {
  3. $id = (int) $id;
  4. $rowset = $this->tableGateway->select(array('id' => $id));
  5. $row = $rowset->current();
  6.  
  7. if (!$row) {
  8. throw new \Exception("O registro de ID $id não foi encontrado");
  9. }
  10.  
  11. return $row;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement