Exemplo n.º 1
0
 public function __construct(ServiceManager $sm = null)
 {
     parent::__construct();
     $this->initServiceManager($sm);
 }
Exemplo n.º 2
0
 /**
  * Construct.
  */
 public function __construct($items = [])
 {
     parent::__construct($items);
     $this->setSlim(Slim::getInstance());
 }
Exemplo n.º 3
0
 function __construct(MvcContext $context)
 {
     parent::__construct($_SESSION);
     $this->context = $context;
 }
Exemplo n.º 4
0
 function __construct($items = array())
 {
     parent::__construct($items);
     $this->converted = false;
 }
Exemplo n.º 5
0
 public function __construct($items = array())
 {
     @session_start();
     $this->data =& $_SESSION;
     parent::__construct($items);
 }