| 1 | <?php |
||
| 11 | class Regex implements Activator |
||
| 12 | { |
||
| 13 | /** @var array|string */ |
||
| 14 | protected $patterns; |
||
| 15 | |||
| 16 | 2 | protected function __construct($patterns) |
|
| 24 | |||
| 25 | 2 | public static function make($patterns) |
|
| 29 | |||
| 30 | /** |
||
| 31 | * Result of matching activator. |
||
| 32 | * |
||
| 33 | * @param MessageReceived $message |
||
| 34 | * |
||
| 35 | * @return bool |
||
| 36 | */ |
||
| 37 | 2 | public function matches(MessageReceived $message): bool |
|
| 41 | } |
||
| 42 |