Fixed phpdoc and function type

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ (skjnldsv) 2017-12-08 17:42:03 +01:00 committed by Morris Jobke
parent f018bfc7de
commit 1ac31260ac
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
1 changed files with 8 additions and 2 deletions

View File

@ -193,6 +193,11 @@ class TemplateLayout extends \OC_Template {
}
}
/**
* @param string $path
* @param string $file
* @return string
*/
protected function getVersionHashSuffix($path = false, $file = false) {
if (\OC::$server->getConfig()->getSystemValue('debug', false)) {
// allows chrome workspace mapping in debug mode
@ -250,9 +255,9 @@ class TemplateLayout extends \OC_Template {
/**
* @param string $path
* @return string
* @return string|boolean
*/
static public function getAppNamefromPath($path) {
public function getAppNamefromPath($path) {
if ($path !== '' && is_string($path)) {
$pathParts = explode('/', $path);
if ($pathParts[0] === 'css') {
@ -261,6 +266,7 @@ class TemplateLayout extends \OC_Template {
}
return end($pathParts);
}
return false
}