Example #1
0
 /**
  * Returns the full table name (including schema name when possible).
  *
  * @return string
  */
 public function getName()
 {
     $tableName = '';
     if ($this->hasSchema()) {
         $tableName = $this->guessSchemaName() . $this->database->getSchemaDelimiter();
     }
     $tableName .= $this->commonName;
     return $tableName;
 }