WhichBrowser\Analyser\Header\Useragent\Device\Ereader::detectKobo PHP Method

detectKobo() private method

* Kobo
private detectKobo ( $ua )
    private function detectKobo($ua)
    {
        if (preg_match('/Kobo (eReader|Touch)/u', $ua, $match)) {
            $this->data->os->reset();
            $this->data->device->setIdentification(['manufacturer' => 'Kobo', 'series' => 'eReader', 'type' => Constants\DeviceType::EREADER]);
        }
    }