1<?php 2 3namespace Facebook\WebDriver; 4 5/** 6 * Interface representing a single user-interaction action. 7 */ 8interface WebDriverAction 9{ 10 public function perform(); 11} 12