Current Path : /var/www/html/wp-content/plugins/wp-statistics/includes/vendor/whichbrowser/parser/src/ |
Current File : /var/www/html/wp-content/plugins/wp-statistics/includes/vendor/whichbrowser/parser/src/Analyser.php |
<?php namespace WhichBrowser; use WhichBrowser\Constants; use WhichBrowser\Model\Main; class Analyser { use Analyser\Header, Analyser\Derive, Analyser\Corrections, Analyser\Camouflage; private $data; private $options; private $headers = []; public function __construct($headers, $options = []) { $this->headers = $headers; $this->options = (object) $options; } public function setData(&$data) { $this->data =& $data; } public function &getData() { return $this->data; } public function analyse() { if (!isset($this->data)) { $this->data = new Main(); } /* Start the actual analysing steps */ $this->analyseHeaders() ->deriveInformation() ->applyCorrections() ->detectCamouflage() ->deriveDeviceSubType(); } }