* @license https://github.com/allejo/stakx/blob/master/LICENSE.md MIT
6
*/
7
8
namespace allejo\stakx\Filesystem;
9
10
use allejo\stakx\System\Filesystem;
11
12
/**
13
* @method static string absolutePath(string ...$pathFragments) Build an absolute file or directory path separated by the OS specific directory separator.
Avoid variables with short names like $fs. Configured minimum length is 3.
Short variable names may make your code harder to understand. Variable names should
be self-descriptive. This check looks for variable names who are shorter than
a configured minimum.
Loading history...
19
20
public static function __callStatic($name, $arguments)
Short variable names may make your code harder to understand. Variable names should be self-descriptive. This check looks for variable names who are shorter than a configured minimum.