/**
  * @param $typesTable
  * @throws NotContainedValueException
  */
 public function setTypesTable($typesTable)
 {
     $typesTable = $this->dbConnection->getEscapedString($typesTable);
     self::matchTable($this->dbOperations->showTables(), $typesTable);
     $this->typesTable = $typesTable;
 }