Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix path to maps in AdobeFontMetrics.php
`dirname(__FILE__)` gives you `php-font-lib/src/Fontlib` `dirname(__FILE__) . '/../'` gives you `php-font-lib/src/` We need one more level up, to hit /maps. P.S. We can also use `__DIR__ . '/../../'` OR `dirname(__DIR__) . '/../'`
- Loading branch information