Required parameter $dompdf follows optional parameter $paper
These errors are why?help me
Give some precision, context & code
You should give more info about your problem
Seems like you are getting this error because the optional params should go at the end.
Bad:
function badExample($paper = null, $dompdf) {}
Good:
function goodExample($dompdf, $paper = null) {}
Since paper is optional, it must go after all required parameters.
Please or to participate in this conversation.