| 1 | <?php |
||
| 6 | class Connection |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * @var string |
||
| 10 | */ |
||
| 11 | private $channel; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | private $server; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var int |
||
| 20 | */ |
||
| 21 | private $port; |
||
| 22 | |||
| 23 | public function __construct(string $channel, string $server, int $port = 6667) |
||
| 29 | |||
| 30 | public function channel() : string |
||
| 34 | |||
| 35 | public function server() : string |
||
| 39 | |||
| 40 | public function port() : int |
||
| 44 | } |
||
| 45 |