Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function __construct( |
||
19 | string $name, |
||
20 | $isBot, |
||
21 | array $channels, |
||
22 | array $users, |
||
23 | array $patterns, |
||
24 | string $method, |
||
25 | LoggerInterface $logger = null) |
||
26 | { |
||
27 | $this->setName($name); |
||
28 | $this->setIsBot($isBot); |
||
29 | $this->setChannels($channels); |
||
30 | $this->setUsers($users); |
||
31 | $this->setPatterns($patterns); |
||
32 | $this->setLog($logger); |
||
33 | |||
34 | $this->method = $method; |
||
35 | } |
||
36 | |||
46 | } |