| 1234567891011121314151617 |
- <?php
- namespace phpnotify;
- require_once('subject.php');
- class notifier {
- private string $url;
- public function __construct(string $url) {
- $this->url = $url;
- }
- public function subscribe(string $subject): subject {
- return new subject($this->url, $subject);
- }
- }
|