Skip to content
Snippets Groups Projects
Commit 6b48e431 authored by Sebastien ANDRE's avatar Sebastien ANDRE
Browse files

hotline : #179619 : missing return

parent 2375d798
Branches
Tags
No related merge requests found
Pipeline #23265 passed with stage
in 27 minutes and 1 second
- correctif #179619 : Cosmogramme : fichier bloqué dans les traitements
\ No newline at end of file
......@@ -65,7 +65,9 @@ class Class_NoticeUnimarc_Zone {
public function addChildFrom(array $subfield) : self {
if (isset($subfield[0]) && isset($subfield[1]))
return $this->addChild($subfield[0], $subfield[1]);
return $this->addChild($subfield[0], $subfield[1]);
return $this;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment