Doctrine\ORM\UnitOfWork::hasPendingInsertions PHP 메소드

hasPendingInsertions() 공개 메소드

Checks whether the UnitOfWork has any pending insertions.
public hasPendingInsertions ( ) : boolean
리턴 boolean TRUE if this UnitOfWork has pending insertions, FALSE otherwise.
    public function hasPendingInsertions()
    {
        return ! empty($this->entityInsertions);
    }