You are here

public function ObjectManagerDecorator::refresh in Plug 7

Refreshes the persistent state of an object from the database, overriding any local changes that have not yet been persisted.

Parameters

object $object The object to refresh.:

Return value

void

Overrides ObjectManager::refresh

File

lib/doctrine/common/lib/Doctrine/Common/Persistence/ObjectManagerDecorator.php, line 88

Class

ObjectManagerDecorator
Base class to simplify ObjectManager decorators

Namespace

Doctrine\Common\Persistence

Code

public function refresh($object) {
  return $this->wrapped
    ->refresh($object);
}