Skip to content

Commit

Permalink
Documentation: improve docs for Phar-incompatible 'realpath()' usage (
Browse files Browse the repository at this point in the history
  • Loading branch information
jdreesen authored Sep 17, 2024
1 parent cc886c4 commit 6a18e90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/probable-bugs.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ alternative is to use the [dirname()](http://php.net/manual/en/function.dirname.

/* after */
define ('PROJECT_ROOT', dirname(__DIR__) . '/');
require_once dirname(dirname(__DIR__)) . '/vendor/autoload.php';
require_once dirname(__DIR__, 2) . '/vendor/autoload.php';
```

## Forgotten debug statements
Expand Down

0 comments on commit 6a18e90

Please sign in to comment.