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 256 forks source link

Emit no notices on PHP 7.4 #77

Closed Piskvor closed 4 years ago

Piskvor commented 4 years ago

fread() and fwrite() may emit E_NOTICE as seen in https://bugs.php.net/bug.php?id=78482 This is apparently by-design, but the resulting ErrorException propagates all the way up the stack, crashing the application. Building on #76 , silence this notice - as the condition is still indicated by the return value, there's no point in emitting it.

bsweeney commented 4 years ago

See comments on #78.