It seems like $possiblePackage of type object<Facade\Ignition\Support\Packagist\Package> is incompatible with the declared type object<Facade\Flare\Support\Packagist\Package> of property $possiblePackage.
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...
16
}
17
18
public function getSolutionTitle(): string
19
{
20
return 'A composer dependency is missing';
21
}
22
23
public function getSolutionDescription(): string
24
{
25
$output = [
26
'You might be missing a composer dependency.',
27
'A possible package that was found is `'.$this->possiblePackage->name.'`.',
28
'',
29
'See if this is the package that you need and install it via `composer require '.$this->possiblePackage->name.'`.',
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..