parent
777c4d0baf
commit
acb93ce1ae
|
@ -115,4 +115,18 @@ class Document
|
||||||
}
|
}
|
||||||
return $str;
|
return $str;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert $this to an array
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function toArray()
|
||||||
|
{
|
||||||
|
$a = array();
|
||||||
|
foreach ($this->sections as $section) {
|
||||||
|
$a[$section->getName()] = $section->toArray();
|
||||||
|
}
|
||||||
|
return $a;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue