:octocat: what the fuck phpstan???

This commit is contained in:
smiley
2024-10-16 11:08:29 +02:00
parent f172094346
commit f08e49322d
+2 -3
View File
@@ -19,14 +19,13 @@ use function dirname, file_exists, file_get_contents, is_file, mkdir, realpath,
*/
trait BuildDirTrait{
/** @var string */
private const _buildDir = __DIR__.'/../.build/';
private string $_buildDir = __DIR__.'/../.build/';
/**
* returns the full raw path to the build dir
*/
protected function getBuildPath(string $subPath):string{
return self::_buildDir.trim($subPath, '\\/');
return $this->_buildDir.trim($subPath, '\\/');
}
/**