489495df
芝麻web文件管理
芝麻web文件管理V1.00
489495df
编辑当前文件:/home/landifun/www/vendor/hisorange/browser-detect/src/Payload.php
<?php namespace hisorange\BrowserDetect; use hisorange\BrowserDetect\Contracts\PayloadInterface; /** * This class is passed down in the pipeline * and each stage makes the changes on this * state carrier object. * * @package hisorange\BrowserDetect */ class Payload implements PayloadInterface { /** * @var string */ protected $agent; /** * @var array */ protected $store = []; /** * @inheritdoc */ public function __construct(string $agent) { $this->agent = $agent; } /** * @inheritdoc */ public function getAgent(): string { return $this->agent; } /** * @inheritdoc */ public function getValue(string $key) { if (array_key_exists($key, $this->store)) { return $this->store[$key]; } else { return null; } } /** * @inheritdoc */ public function setValue(string $key, $value): void { if ($value !== null) { $this->store[$key] = $value; } } /** * @inheritdoc */ public function toArray(): array { return array_merge( $this->store, [ 'userAgent' => $this->agent, ] ); } }
Not Found
404
Not Found