Neos\Flow\Persistence\Doctrine\Repository::update PHP Метод

update() публичный Метод

Schedules a modified object for persistence.
public update ( object $object ) : void
$object object The modified object
Результат void
    public function update($object)
    {
        if (!$object instanceof $this->objectType) {
            throw new IllegalObjectTypeException('The modified object given to update() was not of the type (' . $this->objectType . ') this repository manages.', 1249479625);
        }
        $this->persistenceManager->update($object);
    }