The return type of return $xml; (string|false) is incompatible with the return type declared by the interface Noodlehaus\Writer\WriterInterface::toString 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.
The return type of return $dom->saveXML(); (string) is incompatible with the return type declared by the interface Noodlehaus\Writer\WriterInterface::toString 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...
38
}
39
40
/**
41
* {@inheritdoc}
42
*/
43
public static function getSupportedExtensions()
44
{
45
return ['xml'];
46
}
47
48
/**
49
* Converts array to XML string.
50
* @param array $arr Array to be converted
51
* @param string $rootElement I specified will be taken as root element
52
* @param SimpleXMLElement $xml If specified content will be appended
When comparing two booleans, it is generally considered safer to use the strict comparison operator.