vendor
composer
donatj
phpuseragentparser
.github
.helpers
bin
src
UserAgent
Browsers.php
Platforms.php
UserAgent.php
UserAgentInterface.php
UserAgentParser.php
UserAgentParser.php
tests
.editorconfig
.gitignore
.mddoc.xml
.travis.yml
CONTRIBUTING.md
LICENSE.md
Makefile
README.md
composer.json
phpunit.xml.dist
autoload.php
.gitignore
README.md
badge.php
composer.json
composer.lock
index.php
40 lines
1.2 KiB
PHP
40 lines
1.2 KiB
PHP
<?php
|
|
|
|
// DO NOT EDIT THIS FILE - IT IS GENERATED BY constant_generator.php
|
|
|
|
namespace donatj\UserAgent;
|
|
|
|
interface Platforms {
|
|
|
|
const MACINTOSH = 'Macintosh';
|
|
const CHROME_OS = 'Chrome OS';
|
|
const LINUX = 'Linux';
|
|
const WINDOWS = 'Windows';
|
|
const ANDROID = 'Android';
|
|
const BLACKBERRY = 'BlackBerry';
|
|
const FREEBSD = 'FreeBSD';
|
|
const IPAD = 'iPad';
|
|
const IPHONE = 'iPhone';
|
|
const IPOD = 'iPod';
|
|
const KINDLE = 'Kindle';
|
|
const KINDLE_FIRE = 'Kindle Fire';
|
|
const NETBSD = 'NetBSD';
|
|
const NEW_NINTENDO_3DS = 'New Nintendo 3DS';
|
|
const NINTENDO_3DS = 'Nintendo 3DS';
|
|
const NINTENDO_DS = 'Nintendo DS';
|
|
const NINTENDO_SWITCH = 'Nintendo Switch';
|
|
const NINTENDO_WII = 'Nintendo Wii';
|
|
const NINTENDO_WIIU = 'Nintendo WiiU';
|
|
const OPENBSD = 'OpenBSD';
|
|
const PLAYBOOK = 'PlayBook';
|
|
const PLAYSTATION_3 = 'PlayStation 3';
|
|
const PLAYSTATION_4 = 'PlayStation 4';
|
|
const PLAYSTATION_VITA = 'PlayStation Vita';
|
|
const TIZEN = 'Tizen';
|
|
const WINDOWS_PHONE = 'Windows Phone';
|
|
const XBOX = 'Xbox';
|
|
const XBOX_ONE = 'Xbox One';
|
|
|
|
}
|
|
|