table = $table; $this->nameWithoutPrefix = $nameWithoutPrefix; } /** * Retrieve table object. * * @return Table */ public function getTable() { return $this->table; } /** * @inheritdoc */ public function getElementType() { return self::TYPE; } /** * Retrieve the constraint name which is calculated without table prefix. * * @return string */ public function getNameWithoutPrefix() { return $this->nameWithoutPrefix; } }