File tree Expand file tree Collapse file tree 4 files changed +30
-0
lines changed Expand file tree Collapse file tree 4 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,9 @@ parameters:
4040 - stubs/ORM/Mapping/ClassMetadataInfo.stub
4141 - stubs/ORM/ORMException.stub
4242 - stubs/ORM/Query.stub
43+ - stubs/ORM/Query/Expr/Comparison.stub
44+ - stubs/ORM/Query/Expr/Composite.stub
45+ - stubs/ORM/Query/Expr/Join.stub
4346 - stubs/Persistence/Mapping/ClassMetadata.stub
4447 - stubs/ServiceDocumentRepository.stub
4548
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Doctrine\ORM\Query\Expr;
4+
5+ class Comparison
6+ {
7+
8+ }
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Doctrine\ORM\Query\Expr;
4+
5+ class Composite
6+ {
7+
8+ }
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace Doctrine\ORM\Query\Expr;
4+
5+ class Join
6+ {
7+
8+ public const ON = 'ON';
9+ public const WITH = 'WITH';
10+
11+ }
You can’t perform that action at this time.
0 commit comments