Php 7 PDF Page Group - sizeof (): el parámetro debe ser una matriz o un objeto que implementa contable contable

//change from
$n = sizeof($this->PageGroups) + 1;
//to
if (empty($this->PageGroups)) {
    $n = 1;
} else {
    $n = count($this->PageGroups)+1;
}
Half Unicorn, Half Potato