Guest User

Untitled

a guest
May 8th, 2012
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. class BasePresenter extends Nette\Application\UI\Presenter
  2. {
  3.    
  4.     protected $section;
  5.     protected $parser;
  6.     protected $io;
  7.  
  8.     public function __construct(
  9.         CleverDic\Model\Sections $section,
  10.         CleverDic\Model\Parser $parser,
  11.         CleverDic\Model\IO $io,
  12.         Nette\DI\Container $container
  13.     )
  14.     {
  15.         parent::__construct($container);
  16.        
  17.         $this->section = $section;
  18.         $this->parser = $parser;
  19.         $this->io = $io;
  20.  
  21.     }
Advertisement
Add Comment
Please, Sign In to add comment