diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-07-19 15:48:58 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2017-08-01 08:20:15 +0200 |
commit | 5424d6a40d13f922a19e2b2b0e484a56f4dbe7f3 (patch) | |
tree | dceac8d538c25e63d838a1f10f5eaa257fb3bb39 /lib/private/legacy | |
parent | b4d4db0e39d3e09fe0cf53241c72d5d6fc180101 (diff) | |
download | nextcloud-server-5424d6a40d13f922a19e2b2b0e484a56f4dbe7f3.tar.gz nextcloud-server-5424d6a40d13f922a19e2b2b0e484a56f4dbe7f3.zip |
Add proper PHPDoc
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'lib/private/legacy')
-rw-r--r-- | lib/private/legacy/template.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/private/legacy/template.php b/lib/private/legacy/template.php index f5ee2336831..08ee0abaafe 100644 --- a/lib/private/legacy/template.php +++ b/lib/private/legacy/template.php @@ -325,7 +325,9 @@ class OC_Template extends \OC\Template\Base { /** * print error page using Exception details - * @param Exception | Throwable $exception + * @param Exception|Throwable $exception + * @param bool $fetchPage + * @return bool|string */ public static function printExceptionErrorPage($exception, $fetchPage = false) { try { |