Lines Matching refs:model
32 protected $model = ''; variable in DeviceDetector\\Parser\\Device\\AbstractDeviceParser
2243 return $this->model;
2349 $this->model = '';
2352 $this->model = $this->buildModel($regex['model'], $matches);
2370 $this->model = $this->buildModel($modelRegex['model'], $modelMatches);
2385 * @param string $model
2390 protected function buildModel(string $model, array $matches): string argument
2392 $model = $this->buildByMatch($model, $matches);
2394 $model = \str_replace('_', ' ', $model);
2396 $model = \preg_replace('/ TD$/i', '', $model);
2398 if ('Build' === $model || empty($model)) {
2402 return \trim($model);
2438 $this->model = '';
2449 'model' => $this->model,