The return type of return \Nyholm\Psr7\Stre...ateFromResource($body); (self) is incompatible with the return type declared by the interface Http\Message\StreamFactory::createStream of type Psr\Http\Message\StreamInterface.
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.
The return type of return \Nyholm\Psr7\Stre...== $body ? '' : $body); (self) is incompatible with the return type declared by the interface Http\Message\StreamFactory::createStream of type Psr\Http\Message\StreamInterface.
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...
26
}
27
28
/**
29
* Copy the contents of a stream into another stream until the given number
30
* of bytes have been read.
31
*
32
* @author Michael Dowling and contributors to guzzlehttp/psr7
33
*
34
* @param StreamInterface $source Stream to read from
35
* @param StreamInterface $dest Stream to write to
36
* @param int $maxLen Maximum number of bytes to read. Pass -1
37
* to read the entire stream
38
*
39
* @throws \RuntimeException on error
40
*/
41
4
public function copyToStream(StreamInterface $source, StreamInterface $dest, $maxLen = -1)
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.
Let’s take a look at an example:
Our function
my_functionexpects aPostobject, and outputs the author of the post. The base classPostreturns a simple string and outputting a simple string will work just fine. However, the child classBlogPostwhich is a sub-type ofPostinstead decided to return anobject, and is therefore violating the SOLID principles. If aBlogPostwere passed tomy_function, PHP would not complain, but ultimately fail when executing thestrtouppercall in its body.