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:
40
40
- stubs/ORM/Mapping/ClassMetadataInfo.stub
41
41
- stubs/ORM/ORMException.stub
42
42
- 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
43
46
- stubs/Persistence/Mapping/ClassMetadata.stub
44
47
- stubs/ServiceDocumentRepository.stub
45
48
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