<?php is_null(mixed $value): bool
<?php public function hasErrors(): bool { return !is_null($this->getErrors()) && count($this->getErrors()) > 0; }
<?php protected function build(DOMNode $parent, string $nodeName, mixed $nodeValue, $namespace = null): void { if (is_null($nodeValue) || (is_string($nodeValue) && strlen($nodeValue) === 0)) { return; }
<?php : $this->document->createElement($nodeName); if (!is_null($nodeValue)) { $newNode->appendChild($this->document->createTextNode($nodeValue)); }
<?php protected function getNamespace(?string $key): ?string { if (is_null($key)) { return null; }