*/ namespace WebDriver; /** * WebDriver\ApplicationCache class * * @package WebDriver * * @method integer status() Get application cache status. */ final class ApplicationCache extends AbstractWebDriver { /** * {@inheritdoc} */ protected function methods() { return array( 'status' => array('GET'), ); } }