Skip to content

Commit

Permalink
[FIX] Don't use realpath() for module and base path (fixes silverstri…
Browse files Browse the repository at this point in the history
  • Loading branch information
Zauberfisch authored Apr 17, 2021
1 parent 0705b19 commit 9b35a9d
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 9b35a9d

Please sign in to comment.