Jackalope\Observation\EventFilter::skipByType PHP Method

skipByType() private method

Bitwise and on the event type
private skipByType ( PHPCR\Observation\EventInterface $event ) : boolean
$event PHPCR\Observation\EventInterface
return boolean
    private function skipByType(EventInterface $event)
    {
        return !($event->getType() & $this->eventTypes);
    }