clear() public method

Clears the EntityManager. All entities that are currently managed by this EntityManager become detached.
public clear ( string $entityName = null )
$entityName string
コード例 #1
0
ファイル: XmlEntityRepository.php プロジェクト: GromNaN/oxm
 /**
  * Clears the repository, causing all managed entities to become detached.
  */
 public function clear()
 {
     $this->xem->clear($this->class->rootXmlEntityName);
 }