Lines Matching refs:null

86     protected $userAgent = null;
105 protected $matchingRegex = null;
113 protected $matchesArray = null;
140 'HTTP_X_WAP_PROFILE' => null,
141 'HTTP_X_WAP_CLIENTID' => null,
142 'HTTP_WAP_CONNECTION' => null,
143 'HTTP_PROFILE' => null,
145 'HTTP_X_OPERAMINI_PHONE_UA' => null,
146 'HTTP_X_NOKIA_GATEWAY_ID' => null,
147 'HTTP_X_ORANGE_ID' => null,
148 'HTTP_X_VODAFONE_3GPDPCONTEXT' => null,
149 'HTTP_X_HUAWEI_USERID' => null,
151 'HTTP_UA_OS' => null,
153 'HTTP_X_MOBILE_GATEWAY' => null,
155 'HTTP_X_ATT_DEVICEID' => null,
293 // 'KyoceraTablet' => null,
295 // 'IntextTablet' => null,
677 * @param string $userAgent Inject the User-Agent header. If null, will use HTTP_USER_AGENT
681 array $headers = null,
682 $userAgent = null
704 * @param array $httpHeaders The headers to set. If null, then using PHP's _SERVER to extract
705 * the headers. The default null is left for backwards compatibility.
707 public function setHttpHeaders($httpHeaders = null)
741 * Simply null is returned.
747 * @return string|null The value of the header.
767 return null;
795 public function setCfHeaders($cfHeaders = null) {
842 * @return string|null
844 public function setUserAgent($userAgent = null)
852 $this->userAgent = null;
867 return $this->userAgent = null;
873 * @return string|null The user agent if it's set.
887 * parameter is null which will default to self::DETECTION_TYPE_MOBILE.
889 public function setDetectionType($type = null)
891 if ($type === null) {
1096 * @param null $userAgent deprecated
1099 protected function matchDetectionRulesAgainstUA($userAgent = null)
1148 * @param null $userAgent deprecated
1149 * @param null $httpHeaders deprecated
1152 public function isMobile($userAgent = null, $httpHeaders = null)
1189 public function isTablet($userAgent = null, $httpHeaders = null)
1218 * @return bool|int|null
1220 public function is($key, $userAgent = null, $httpHeaders = null)
1251 public function match($regex, $userAgent = null)