예제 #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);
 }
예제 #2
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.
  * 
  * @param object $object The instance to make managed and persistent.
  */
 public function persist($object)
 {
     $this->_errorIfClosed();
     $this->_unitOfWork->persist($object);
 }