1 | <?php |
||
10 | class Payload implements Activator |
||
11 | { |
||
12 | protected $value; |
||
13 | |||
14 | 2 | protected function __construct(string $value) |
|
18 | |||
19 | 2 | public static function make(string $value) |
|
23 | |||
24 | /** |
||
25 | * Result of matching activator. |
||
26 | * |
||
27 | * @param MessageReceived $message |
||
28 | * |
||
29 | * @return bool |
||
30 | */ |
||
31 | 2 | public function matches(MessageReceived $message): bool |
|
35 | } |
||
36 |