You are here

public function ObjectManager::persist in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/doctrine/common/lib/Doctrine/Common/Persistence/ObjectManager.php \Doctrine\Common\Persistence\ObjectManager::persist()

Tells the ObjectManager to make an instance managed and persistent.

The object will be entered into the database as a result of the flush operation.

NOTE: The persist operation always considers objects that are not yet known to this ObjectManager as NEW. Do not pass detached objects to the persist operation.

Parameters

object $object The instance to make managed and persistent.:

Return value

void

1 method overrides ObjectManager::persist()
ObjectManagerDecorator::persist in vendor/doctrine/common/lib/Doctrine/Common/Persistence/ObjectManagerDecorator.php
Tells the ObjectManager to make an instance managed and persistent.

File

vendor/doctrine/common/lib/Doctrine/Common/Persistence/ObjectManager.php, line 56

Class

ObjectManager
Contract for a Doctrine persistence layer ObjectManager class to implement.

Namespace

Doctrine\Common\Persistence

Code

public function persist($object);