mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
Merge pull request #1988 from charithesh16/feat-database-indexing
Fixes PSR issues for Detector Library
This commit is contained in:
commit
d6c17d309d
1 changed files with 4 additions and 4 deletions
|
|
@ -26,7 +26,7 @@ class Detector
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get OS info
|
* Get OS info
|
||||||
*
|
*
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function getOS(): array
|
public function getOS(): array
|
||||||
|
|
@ -42,7 +42,7 @@ class Detector
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get client info
|
* Get client info
|
||||||
*
|
*
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function getClient(): array
|
public function getClient(): array
|
||||||
|
|
@ -61,7 +61,7 @@ class Detector
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get device info
|
* Get device info
|
||||||
*
|
*
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public function getDevice(): array
|
public function getDevice(): array
|
||||||
|
|
@ -78,7 +78,7 @@ class Detector
|
||||||
*/
|
*/
|
||||||
protected function getDetector(): DeviceDetector
|
protected function getDetector(): DeviceDetector
|
||||||
{
|
{
|
||||||
if(!$this->detctor) {
|
if (!$this->detctor) {
|
||||||
$this->detctor = new DeviceDetector($this->userAgent);
|
$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->skipBotDetection(); // OPTIONAL: If called, bot detection will completely be skipped (bots will be detected as regular devices then)
|
||||||
$this->detctor->parse();
|
$this->detctor->parse();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue