It seems like $io of type object<Symfony\Component...e\Style\StyleInterface> is incompatible with the declared type object<LaravelMeetups\Contracts\Config> of property $io.
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..
The method table() does not seem to exist on object<LaravelMeetups\Contracts\Config>.
This check looks for calls to methods that do not seem to exist on a given type.
It looks for the method on the type itself as well as in inherited classes or
implemented interfaces.
This is most likely a typographical error or the method has been renamed.
The return type of return $this->rows; (LaravelMeetups\Contracts\Config) is incompatible with the return type declared by the interface LaravelMeetups\Contracts\Jobs\Writer::getRows of type array.
If you return a value from a function or method, it should be a sub-type of the
type that is given by the parent type f.e. an interface, or abstract method.
This is more formally defined by the
Lizkov substitution principle,
and guarantees that classes that depend on the parent type can use any instance
of a child type interchangably. This principle also belongs to the
SOLID principles
for object oriented design.
Our function my_function expects a Post object, and outputs the author
of the post. The base class Post returns a simple string and outputting a
simple string will work just fine. However, the child class BlogPost which
is a sub-type of Post instead decided to return an object, and is
therefore violating the SOLID principles. If a BlogPost were passed to
my_function, PHP would not complain, but ultimately fail when executing the
strtoupper call in its body.
Loading history...
87
}
88
89
/**
90
* Configures the table instance with
91
* the headers provided by the config list elements.
It seems like array_map(function ($ele...>getCatalogProviders()) of type array is incompatible with the declared type object<LaravelMeetups\Contracts\Config> of property $headers.
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..
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..