Guest User

Untitled

a guest
Jul 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2.  
  3. // HomeAction.php
  4.  
  5. /**
  6. * @return Response
  7. */
  8. public function __invoke()
  9. {
  10. $this->domain->logHomePageVisit();
  11. $payload = $this->domain->fetchHomePageData();
  12.  
  13. return $this->responder->response($payload);
  14. }
Add Comment
Please, Sign In to add comment