Skip to content

Commit f08e493

Browse files
committed
:octocat: what the fuck phpstan???
1 parent f172094 commit f08e493

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/BuildDirTrait.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,13 @@
1919
*/
2020
trait BuildDirTrait{
2121

22-
/** @var string */
23-
private const _buildDir = __DIR__.'/../.build/';
22+
private string $_buildDir = __DIR__.'/../.build/';
2423

2524
/**
2625
* returns the full raw path to the build dir
2726
*/
2827
protected function getBuildPath(string $subPath):string{
29-
return self::_buildDir.trim($subPath, '\\/');
28+
return $this->_buildDir.trim($subPath, '\\/');
3029
}
3130

3231
/**

0 commit comments

Comments
 (0)