Skip to content

Instantly share code, notes, and snippets.

@we4tech
Created December 18, 2011 12:49
Show Gist options
  • Save we4tech/1493317 to your computer and use it in GitHub Desktop.
Save we4tech/1493317 to your computer and use it in GitHub Desktop.
users_controller.php
<?php
class UsersController {
public function show() {
$user = UserFinder::find(1);
$this->assignVariable('user', $user);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment