We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cae091 commit 0f45f78Copy full SHA for 0f45f78
app/Platform.php
@@ -15,6 +15,15 @@ public static function cwd(string $path = ''): string
15
return static::normalizePath(getcwd());
16
}
17
18
+ public static function temp_test_path(string $path = ''): string
19
+ {
20
+ if ($path) {
21
+ return static::cwd("tests/tmp/{$path}");
22
+ }
23
+
24
+ return static::cwd('tests/tmp');
25
26
27
public static function normalizePath(string $path): string
28
{
29
if ((new self)->isWindows()) {
0 commit comments