public function __construct(array &$data_, $namespace_ = null)
 {
     parent::__construct($data_);
     $this->m_id = session_id();
     $this->m_name = session_name();
     $this->m_namespace = $namespace_;
 }
 public function __construct($component_)
 {
     parent::__construct();
     $this->m_component = $component_;
 }
 public function __construct($value)
 {
     parent::__construct($value);
     $this->originalValue = $this->value;
 }
 public function __construct($type_)
 {
     parent::__construct();
     $this->type = $type_;
 }
 public function __construct($component_)
 {
     parent::__construct();
     $this->m_component = $component_;
     $this->m_path = Environment::pathComponent($component_);
 }
示例#6
0
 /**
  * Constructs a new EhProperties object.
  */
 public function __construct()
 {
     parent::__construct();
 }