From 9b35a9dbb0b7dd054d2e29a6f7ed2f6776c90da2 Mon Sep 17 00:00:00 2001 From: Zauberfisch Date: Sat, 17 Apr 2021 07:15:11 +0200 Subject: [PATCH] [FIX] Don't use realpath() for module and base path (fixes #34) --- src/Library.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Library.php b/src/Library.php index f4e6a42..9162fbc 100644 --- a/src/Library.php +++ b/src/Library.php @@ -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; }