1
0
Fork 0
mirror of synced 2024-06-26 18:20:43 +12:00

Merge pull request #1941 from ezioishan/master

Fix PSR issues in Detector #1939
This commit is contained in:
Christy Jacob 2021-10-08 16:00:33 +05:30 committed by GitHub
commit 6c2257e3e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,7 @@ class Detector
/**
* Get OS info
*
*
* @return array
*/
public function getOS(): array
@ -42,7 +42,7 @@ class Detector
/**
* Get client info
*
*
* @return array
*/
public function getClient(): array
@ -61,7 +61,7 @@ class Detector
/**
* Get device info
*
*
* @return array
*/
public function getDevice(): array
@ -78,7 +78,7 @@ class Detector
*/
protected function getDetector(): DeviceDetector
{
if(!$this->detctor) {
if (!$this->detctor) {
$this->detctor = new DeviceDetector($this->userAgent);
$this->detctor->skipBotDetection(); // OPTIONAL: If called, bot detection will completely be skipped (bots will be detected as regular devices then)
$this->detctor->parse();