dompdf / php-font-lib

A library to read, parse, export and make subsets of different types of font files.
GNU Lesser General Public License v2.1
1.73k stars 255 forks source link

Fix order of class definition #12

Closed bsweeney closed 10 years ago

bsweeney commented 10 years ago

As indicated in the documentation on inheritance, PHP requires that classes be defined before they are used. In terms of a class that extends another class, the parent should be defined before the child. Earlier versions of PHP (and indeed the current version) may have been lenient on this point, but most opcache engines enforce the stricter ordering requirement.

References: