Gc\Db\AbstractTable::__construct PHP Method

__construct() public method

Initialize constructor and save instance of \Zend\Db\TableGateway\TableGateway($name) in self::$tables
public __construct ( )
    public function __construct()
    {
        if (!empty($this->name) and !array_key_exists($this->name, self::$tables)) {
            self::$tables[$this->name] = new TableGateway\TableGateway($this->name, TableGateway\Feature\GlobalAdapterFeature::getStaticAdapter());
        }
        $this->init();
    }