summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMarcel Klehr <mklehr@gmx.net>2023-07-07 11:47:27 +0200
committerMarcel Klehr <mklehr@gmx.net>2023-08-09 10:02:11 +0200
commit413a4f63ee69bb6419076a702c7187fbc44a9bf1 (patch)
tree9456e028a95446edee7f54b41dc8e9794114fb3b /lib
parentd578974b8165cb8b5ec9095887134359b7e8bc5a (diff)
downloadnextcloud-server-413a4f63ee69bb6419076a702c7187fbc44a9bf1.tar.gz
nextcloud-server-413a4f63ee69bb6419076a702c7187fbc44a9bf1.zip
OCP\Common\NotFoundException: Add param type
Signed-off-by: Marcel Klehr <mklehr@gmx.net> (cherry picked from commit 397495346470bd78ff02d05e34c72ac2f2cbcb82)
Diffstat (limited to 'lib')
-rw-r--r--lib/public/Common/Exception/NotFoundException.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Common/Exception/NotFoundException.php b/lib/public/Common/Exception/NotFoundException.php
index 309efe3e220..a2cd4db8634 100644
--- a/lib/public/Common/Exception/NotFoundException.php
+++ b/lib/public/Common/Exception/NotFoundException.php
@@ -35,7 +35,7 @@ class NotFoundException extends \Exception {
* @param string $msg the error message
* @since 28.0.0
*/
- public function __construct($msg) {
+ public function __construct(string $msg) {
parent::__construct($msg);
}
}