Esempio n. 1
0
 public function __construct($appName, IRequest $request, App $app, ITags $tags)
 {
     parent::__construct($appName, $request, $app);
     $this->app = $app;
     $this->tags = $tags;
 }
 public function __construct($appName, IRequest $request, App $app, ICache $cache, ITags $tags)
 {
     parent::__construct($appName, $request, $app);
     $this->cache = $cache;
     $this->tagMgr = $tags;
 }
Esempio n. 3
0
 public function __construct($appName, IRequest $request, App $app, ICache $cache)
 {
     parent::__construct($appName, $request, $app);
     $this->cache = $cache;
 }
 public function __construct($appName, IRequest $request, App $app, $userId)
 {
     parent::__construct($appName, $request, $app);
     $this->userId = $userId;
 }
 public function __construct($appName, IRequest $request, App $app, IApi $api)
 {
     parent::__construct($appName, $request, $app);
     $this->api = $api;
 }