1<?php 2 3namespace Facebook\WebDriver; 4 5/** 6 * The platforms supported by WebDriver. 7 * 8 * @codeCoverageIgnore 9 */ 10class WebDriverPlatform 11{ 12 const ANDROID = 'ANDROID'; 13 /** @deprecated ANY has no meaning in W3C WebDriver, see https://github.com/php-webdriver/php-webdriver/pull/731 */ 14 const ANY = 'ANY'; 15 const LINUX = 'LINUX'; 16 const MAC = 'MAC'; 17 const UNIX = 'UNIX'; 18 const VISTA = 'VISTA'; 19 const WINDOWS = 'WINDOWS'; 20 const XP = 'XP'; 21 22 private function __construct() 23 { 24 } 25} 26