Skip to content

Instantly share code, notes, and snippets.

@hgraca
Last active April 2, 2017 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hgraca/2813548afd66d2c01d50602384634651 to your computer and use it in GitHub Desktop.
Save hgraca/2813548afd66d2c01d50602384634651 to your computer and use it in GitHub Desktop.
MVP snippet used in my blog post about MVC and variants
<?php
class MyPresenter
// ...
public function showUsers()
{
// ...
$data = $this->accountManager->getUserDetails($from = 10, $to = 20);
$this->view->bind('list', $data);
// ...
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment