DeviceDetector\Parser\Device\DeviceParserAbstract::buildModel PHP Method

buildModel() protected method

protected buildModel ( $model, $matches )
    protected function buildModel($model, $matches)
    {
        $model = $this->buildByMatch($model, $matches);
        $model = str_replace('_', ' ', $model);
        $model = preg_replace('/ TD$/i', '', $model);
        if ($model === 'Build') {
            return null;
        }
        return $model;
    }