This commit is contained in:
smiley
2024-01-07 13:53:31 +01:00
parent d641fced1f
commit 4526edb453
+1 -1
View File
@@ -24,7 +24,7 @@ trait BuildDirTrait{
* returns the full raw path to the build dir
*/
protected function getBuildPath(string $subPath):string{
return $this::$buildDir.trim($subPath, '\\/');
return static::$buildDir.trim($subPath, '\\/');
}
/**