__construct() public method

public __construct ( )
示例#1
0
 public function __construct()
 {
     parent::__construct();
     $this->EntityConstructor = $this->EntityConstructor();
     if (!$this->EntityConstructor instanceof Construction\IEntityConstructor) {
         throw new Object\ObjectException('The supplied entity constructor must implement %s: %s given', Construction\IEntityConstructor::IEntityConstructorType, \Storm\Core\Utilities::GetTypeOrClass($this->EntityConstructor));
     }
     if ($this->EntityConstructor->HasEntityType()) {
         throw new Object\ObjectException('The supplied entity constructor %s already has an entity type %s', get_class($this->EntityConstructor), $this->EntityConstructor->GetEntityType());
     }
     $this->EntityConstructor->SetEntityType($this->GetEntityType());
 }