PHPstan analysis.

This commit is contained in:
2023-05-26 13:04:15 +00:00
parent acd209b351
commit 4c8f71d9d8
8 changed files with 264 additions and 55 deletions

View File

@ -3,19 +3,18 @@ namespace App\Ntfy;
class Ntfy
{
protected $domain;
function __construct($domain)
protected string $domain;
function __construct(string $domain)
{
$this->domain = $domain;
}
function send($topic,$title, $message)
function send(string $topic, string $title, string $message): void
{
file_get_contents(
'https://'.$this->domain.'/'.$topic, false, stream_context_create(
['http' => [
'method' => 'POST',
'header' => 'Content-Type: text/plain',
'header' =>
"Content-Type: text/plain\r\n" .
"Title: $title\r\n",