Piwik\Tracker\VisitExcluded::isNonHumanBot PHP Method

isNonHumanBot() protected method

As a result, these sophisticated bots exhibit characteristics of browsers (cookies enabled, executing JavaScript, etc).
See also: DeviceDetector\Parser\Bot
protected isNonHumanBot ( ) : boolean
return boolean
    protected function isNonHumanBot()
    {
        $allowBots = $this->request->getParam('bots');
        $deviceDetector = DeviceDetectorFactory::getInstance($this->userAgent);
        return !$allowBots && ($deviceDetector->isBot() || $this->isIpInRange());
    }