Skip to content

Commit 86e74f3

Browse files
committed
Fix stubs
1 parent b2799b9 commit 86e74f3

File tree

4 files changed

+30
-0
lines changed

4 files changed

+30
-0
lines changed

extension.neon

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

stubs/ORM/Query/Expr/Comparison.stub

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
namespace Doctrine\ORM\Query\Expr;
4+
5+
class Comparison
6+
{
7+
8+
}

stubs/ORM/Query/Expr/Composite.stub

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
namespace Doctrine\ORM\Query\Expr;
4+
5+
class Composite
6+
{
7+
8+
}

stubs/ORM/Query/Expr/Join.stub

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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+
}

0 commit comments

Comments
 (0)