Made message signing in Cryptography use SHA512 as the message content for... #1

Closed
netkas wants to merge 421 commits from master into dev
Showing only changes of commit 1f5a04d04e - Show all commits

View file

@ -7,6 +7,12 @@
class DatabaseOperationException extends Exception
{
/**
* DatabaseOperationException constructor.
*
* @param string $message
* @param Throwable|null $throwable
*/
public function __construct(string $message, ?Throwable $throwable=null)
{
parent::__construct($message, 500, $throwable);