Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function __construct( |
||
18 | string $pluginId, |
||
19 | bool $isBot = null, |
||
20 | array $channels, |
||
21 | array $users, |
||
22 | LoggerInterface $logger = null) |
||
23 | { |
||
24 | $this->setName($pluginId); |
||
25 | $this->setIsBot($isBot); |
||
26 | $this->setChannels($channels); |
||
27 | $this->setUsers($users); |
||
28 | $this->setLog($logger); |
||
29 | } |
||
30 | } |
||
31 |