21 namespace Erebot\Event\Match;
28 class Any extends \Erebot\Event\Match\CollectionAbstract
30 public function match(\Erebot\Interfaces\Event\Base\Generic $event)
32 foreach ($this->submatchers as $match) {
33 if ($match->match($event)) {
A filter that groups several (sub-)filters together and matches if any of the sub-filters matches...