CodeSniffer initial steps

This commit is contained in:
2023-05-26 12:14:21 +00:00
parent 6294487276
commit acd209b351
8 changed files with 116 additions and 28 deletions

View File

@ -1,8 +1,9 @@
<?php
namespace App\Ntfy;
class Ntfy {
private $domain;
class Ntfy
{
protected $domain;
function __construct($domain)
{
$this->domain = $domain;
@ -10,16 +11,18 @@ class Ntfy {
function send($topic,$title, $message)
{
file_get_contents('https://'.$this->domain.'/'.$topic, false, stream_context_create([
'http' => [
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",
'content' => $message
]
]));
'content' => $message]
]
)
);
}
}