It seems like $this->getMockBuilder(Il...onstructor()->getMock() of type PHPUnit_Framework_MockObject_MockObject is incompatible with the declared type Illuminate\Cache\Repository of property $cache.
Our type inference engine has found an assignment to a property that is incompatible
with the declared type of that property.
Either this assignment is in error or the assigned type should be added
to the documentation/type hint for that property..
Loading history...
33
->disableOriginalConstructor()
34
->getMock();
35
36
$this->processor = new Processor(new Schema());
37
$this->service = new GraphQLService($this->processor, $this->cache);
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..