1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace Doctrine\ORM\Query\AST;
- class UpdateItem extends Node
- {
- public $pathExpression;
- public $newValue;
- public function __construct($pathExpression, $newValue)
- {
- $this->pathExpression = $pathExpression;
- $this->newValue = $newValue;
- }
- public function dispatch($sqlWalker)
- {
- return $sqlWalker->walkUpdateItem($this);
- }
- }
|