Skip to content

Commit a178d78

Browse files
Use CPP where possible
1 parent 59a1ff3 commit a178d78

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

ZulipOptions.php

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,10 @@
1818
*/
1919
final class ZulipOptions implements MessageOptionsInterface
2020
{
21-
private ?string $topic;
22-
private ?string $recipient;
23-
24-
public function __construct(?string $topic = null, ?string $recipient = null)
25-
{
26-
$this->topic = $topic;
27-
$this->recipient = $recipient;
21+
public function __construct(
22+
private ?string $topic = null,
23+
private ?string $recipient = null,
24+
) {
2825
}
2926

3027
public function toArray(): array

0 commit comments

Comments
 (0)