UserController.php 250 B

1234567891011121314151617
  1. <?php
  2. namespace demo\Controllers;
  3. use Demo\User;
  4. class UserController {
  5. public function __construct() {
  6. $this->args = func_get_args(); // Empty.
  7. }
  8. function itemAction(User $user) {
  9. return "<h1>User {$user->getId()}</h1>\n";
  10. }
  11. }