notifier.php 298 B

1234567891011121314151617
  1. <?php
  2. namespace phpnotify;
  3. require_once('subject.php');
  4. class notifier {
  5. private string $url;
  6. public function __construct(string $url) {
  7. $this->url = $url;
  8. }
  9. public function subscribe(string $subject): subject {
  10. return new subject($this->url, $subject);
  11. }
  12. }