collectionName() public method

Returns the collection name as a string
public collectionName ( ) : string
return string
Exemplo n.º 1
0
 /**
  * Compares current active record with another one.
  * The comparison is made by comparing table name and the primary key values of the two active records.
  * @param EMongoDocument $record - record to compare to
  * @return boolean - whether the two active records refer to the same row in the database table.
  */
 public function equals($record)
 {
     return $this->collectionName() === $record->collectionName() && (string) $this->getPrimaryKey() === (string) $record->getPrimaryKey();
 }