Skip to content

Commit

Permalink
FIX: Don't use realpath() for module and base path
Browse files Browse the repository at this point in the history
  • Loading branch information
Zauberfisch authored Apr 17, 2021
1 parent 0705b19 commit a2e98ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Library.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ class Library
*/
public function __construct($basePath, $libraryPath, $name = null)
{
$this->basePath = realpath($basePath);
$this->path = realpath($libraryPath);
$this->basePath = $basePath;
$this->path = $libraryPath;
$this->name = $name;
}

Expand Down

0 comments on commit a2e98ff

Please sign in to comment.