source: pro-violet-viettel/sourcecode/application/libraries/Doctrine/ORM/Query/AST/PartialObjectExpression.php @ 345

Last change on this file since 345 was 345, checked in by quyenla, 11 years ago

collaborator page

File size: 363 bytes
Line 
1<?php
2
3namespace Doctrine\ORM\Query\AST;
4
5class PartialObjectExpression extends Node
6{
7    public $identificationVariable;
8    public $partialFieldSet;
9
10    public function __construct($identificationVariable, array $partialFieldSet)
11    {
12        $this->identificationVariable = $identificationVariable;
13        $this->partialFieldSet = $partialFieldSet;
14    }
15}
Note: See TracBrowser for help on using the repository browser.