Bump dependencies
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2023-08-21 07:46:21 +00:00
parent e59e105394
commit 6f1e3dcdd0
2 changed files with 18 additions and 13 deletions

View File

@ -7,7 +7,6 @@ namespace App\Notification;
use Ntfy\Server;
use Ntfy\Message;
use Ntfy\Client;
use Exception;
use InvalidArgumentException;
class Ntfy implements NotificationInterface
@ -28,6 +27,9 @@ class Ntfy implements NotificationInterface
return $instance;
}
/**
* @todo The constructor should be private but static code analysis complains.
*/
public function __construct(private Client $client)
{
}