Nextras\Orm\Mapper\Dbal\DbalMapper::processPostgreAutoupdate PHP Метод

processPostgreAutoupdate() защищенный Метод

protected processPostgreAutoupdate ( Nextras\Orm\Entity\IEntity $entity, array $args )
$entity Nextras\Orm\Entity\IEntity
$args array
    protected function processPostgreAutoupdate(IEntity $entity, array $args)
    {
        $args[] = 'RETURNING %ex';
        $args[] = $this->getAutoupdateReselectExpression();
        $row = $this->connection->queryArgs($args)->fetch();
        $data = $this->getStorageReflection()->convertStorageToEntity($row->toArray());
        $entity->fireEvent('onRefresh', [$data]);
    }