Do not use as variable name.
Visas pārbaudes ir veiksmīgas
The build was successful.

Šī revīzija ir iekļauta:
Rafal Kupiec 2019-05-21 21:36:08 +02:00
vecāks 1f78547ca2
revīzija d8db20e9bd
Parakstījis: belliash
GPG atslēgas ID: 4E829243E0CFE6B4

Parādīt failu

@ -1,6 +1,6 @@
class Program {
string[] parsePathComponents(string $path, bool $endSlash=true, bool $base=false) {
string[] parsePathComponents(string $path, bool $endSlash=true, bool $file=false) {
string[] $retArray;
$path = trim($path);
string $str, $temp;
@ -14,7 +14,7 @@ class Program {
$temp = '';
}
}
($base && $temp) ? $retArray[$temp] = $str + $temp : NULL;
($file && $temp) ? $retArray[$temp] = $str + $temp : NULL;
return $retArray;
}