diff options
author | Marcel Klehr <mklehr@gmx.net> | 2023-07-07 11:47:27 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2023-08-09 10:02:11 +0200 |
commit | 413a4f63ee69bb6419076a702c7187fbc44a9bf1 (patch) | |
tree | 9456e028a95446edee7f54b41dc8e9794114fb3b /lib | |
parent | d578974b8165cb8b5ec9095887134359b7e8bc5a (diff) | |
download | nextcloud-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.php | 2 |
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); } } |