You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`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__) . '/../'`
0 commit comments