HosipLan

Untitled

May 24th, 2011
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. class MyComponente extends Nette\Application\UI\Control
  2. {
  3.  
  4.     /** @var Doctrine\ORM\EntityManager */
  5.     private $em;
  6.    
  7.  
  8.  
  9.     public function __construct(Doctrine\ORM\EntityManager $entityManager)
  10.     {
  11.         parent::__construct(NULL, NULL);
  12.         $this->em = $entityManager;
  13.     }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment