Update invalid_uuid_exception.php

This commit is contained in:
FusionPBX
2025-07-13 20:06:29 -06:00
committed by GitHub
parent 0789693f57
commit 178a8b3273

View File

@@ -32,7 +32,7 @@
* @author Tim Fry <tim@fusionpbx.com>
*/
class invalid_uuid_exception extends Exception {
public function __construct(string $message = "UUID is not valid", int $code = 0, ?\Throwable $previous = null): \Exception {
public function __construct(string $message = "UUID is not valid", int $code = 0, ?\Throwable $previous = null) {
return parent::__construct($message, $code, $previous);
}
}