mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Added missing semi-colon in return
This commit is contained in:
parent
b9003e5f7c
commit
0cffcd1eca
1 changed files with 1 additions and 1 deletions
|
@ -328,7 +328,7 @@ class Folder {
|
||||||
public static function addPathElement($path, $element) {
|
public static function addPathElement($path, $element) {
|
||||||
$element = (array)$element;
|
$element = (array)$element;
|
||||||
array_unshift($element, rtrim($path, DS));
|
array_unshift($element, rtrim($path, DS));
|
||||||
return implode(DS, $element)
|
return implode(DS, $element);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue