Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Sep 13, 2019
1 parent e5c4bcb commit 7759286
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Type/Doctrine/QueryBuilder/QueryBuilderType.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,22 @@

use PhpParser\Node\Expr\MethodCall;
use PHPStan\Type\ObjectType;
use PHPStan\Type\Type;

abstract class QueryBuilderType extends ObjectType
{

/** @var array<string, MethodCall> */
private $methodCalls = [];

final public function __construct(
string $className,
?Type $subtractedType = null
)
{
parent::__construct($className, $subtractedType);
}

/**
* @return array<string, MethodCall>
*/
Expand Down

0 comments on commit 7759286

Please # to comment.