/
home
/
obinna
/
html
/
boazapp
/
vendor
/
doctrine
/
orm
/
lib
/
Doctrine
/
ORM
/
Query
/
AST
/
Upload File
HOME
<?php declare(strict_types=1); namespace Doctrine\ORM\Query\AST; /** * UpdateStatement = UpdateClause [WhereClause] * * @link www.doctrine-project.org */ class UpdateStatement extends Node { /** @var UpdateClause */ public $updateClause; /** @var WhereClause|null */ public $whereClause; /** @param UpdateClause $updateClause */ public function __construct($updateClause) { $this->updateClause = $updateClause; } /** * {@inheritdoc} */ public function dispatch($sqlWalker) { return $sqlWalker->walkUpdateStatement($this); } }