Skip to content

Commit

Permalink
Fix stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Jun 3, 2022
1 parent b2799b9 commit 86e74f3
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
3 changes: 3 additions & 0 deletions extension.neon
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ parameters:
- stubs/ORM/Mapping/ClassMetadataInfo.stub
- stubs/ORM/ORMException.stub
- stubs/ORM/Query.stub
- stubs/ORM/Query/Expr/Comparison.stub
- stubs/ORM/Query/Expr/Composite.stub
- stubs/ORM/Query/Expr/Join.stub
- stubs/Persistence/Mapping/ClassMetadata.stub
- stubs/ServiceDocumentRepository.stub

Expand Down
8 changes: 8 additions & 0 deletions stubs/ORM/Query/Expr/Comparison.stub
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

namespace Doctrine\ORM\Query\Expr;

class Comparison
{

}
8 changes: 8 additions & 0 deletions stubs/ORM/Query/Expr/Composite.stub
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

namespace Doctrine\ORM\Query\Expr;

class Composite
{

}
11 changes: 11 additions & 0 deletions stubs/ORM/Query/Expr/Join.stub
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

namespace Doctrine\ORM\Query\Expr;

class Join
{

public const ON = 'ON';
public const WITH = 'WITH';

}

0 comments on commit 86e74f3

Please sign in to comment.