Doctrine\ORM\UnitOfWork::persist PHP Method

persist() public method

Persists an entity as part of the current unit of work.
public persist ( object $entity )
$entity object The entity to persist.
    public function persist($entity)
    {
        $visited = array();
        $this->doPersist($entity, $visited);
    }

Usage Example

Example #1
0
 /**
  * Tells the EntityManager to make an instance managed and persistent.
  *
  * The entity will be entered into the database at or before transaction
  * commit or as a result of the flush operation.
  *
  * NOTE: The persist operation always considers entities that are not yet known to
  * this EntityManager as NEW. Do not pass detached entities to the persist operation.
  *
  * @param object $object The instance to make managed and persistent.
  */
 public function persist($entity)
 {
     if (!is_object($entity)) {
         throw new \InvalidArgumentException(gettype($entity));
     }
     $this->errorIfClosed();
     $this->unitOfWork->persist($entity);
 }
All Usage Examples Of Doctrine\ORM\UnitOfWork::persist