Storm\Drivers\Base\Relational\Relations\JoinTable::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        parent::__construct();
    }

Usage Example

Example #1
0
 public function __construct($Name, Relational\ITable $Table1, Relational\ITable $Table2)
 {
     $this->Name = $Name;
     $this->Table1 = $Table1;
     $this->Table2 = $Table2;
     $this->AddColumns($Table1, $this->ForeignKey1Map);
     $this->AddColumns($Table2, $this->ForeignKey2Map);
     parent::__construct();
 }