Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix syntax error
Signed-off-by: Morris Jobke <[email protected]>
  • Loading branch information
MorrisJobke committed Dec 11, 2017
commit 52e7d05163f21993bdcef25c26ebfa4487e55305
2 changes: 1 addition & 1 deletion lib/private/TemplateLayout.php
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public function getAppNamefromPath($path) {
}
return end($pathParts);
}
return false
return false;

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't lie in your phpdoc 😉 If you say you returning a string do so :P

}

Expand Down