Skip to content

Instantly share code, notes, and snippets.

@alxfv
Created May 12, 2014 13:41
Show Gist options
  • Save alxfv/0ece98a931962c768409 to your computer and use it in GitHub Desktop.
Save alxfv/0ece98a931962c768409 to your computer and use it in GitHub Desktop.
<?php
/**
* @Route("/test", name="test")
* @Template()
*/
public function testAction(Request $request)
{
/** @var User $user */
$user = $this->getUser();
echo $user->getFirstName().'<br>';
echo $user->getBirthday()->format('d.m.Y H:i:s');
return new Response('<html><body></body></html>');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment