Chris@14
|
1 <?php
|
Chris@14
|
2 /**
|
Chris@14
|
3 * Copyright 2012-2017 Anthon Pang. All Rights Reserved.
|
Chris@14
|
4 *
|
Chris@14
|
5 * Licensed under the Apache License, Version 2.0 (the "License");
|
Chris@14
|
6 * you may not use this file except in compliance with the License.
|
Chris@14
|
7 * You may obtain a copy of the License at
|
Chris@14
|
8 *
|
Chris@14
|
9 * http://www.apache.org/licenses/LICENSE-2.0
|
Chris@14
|
10 *
|
Chris@14
|
11 * Unless required by applicable law or agreed to in writing, software
|
Chris@14
|
12 * distributed under the License is distributed on an "AS IS" BASIS,
|
Chris@14
|
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
Chris@14
|
14 * See the License for the specific language governing permissions and
|
Chris@14
|
15 * limitations under the License.
|
Chris@14
|
16 *
|
Chris@14
|
17 * @package WebDriver
|
Chris@14
|
18 *
|
Chris@14
|
19 * @author Anthon Pang <apang@softwaredevelopment.ca>
|
Chris@14
|
20 */
|
Chris@14
|
21
|
Chris@14
|
22 namespace WebDriver\Service;
|
Chris@14
|
23
|
Chris@14
|
24 /**
|
Chris@14
|
25 * WebDriver\Service\CurlServiceInterface class
|
Chris@14
|
26 *
|
Chris@14
|
27 * @package WebDriver
|
Chris@14
|
28 */
|
Chris@14
|
29 interface CurlServiceInterface
|
Chris@14
|
30 {
|
Chris@14
|
31 /**
|
Chris@14
|
32 * Send protocol request to WebDriver server using curl extension API.
|
Chris@14
|
33 *
|
Chris@14
|
34 * @param string $requestMethod HTTP request method, e.g., 'GET', 'POST', or 'DELETE'
|
Chris@14
|
35 * @param string $url Request URL
|
Chris@14
|
36 * @param array $parameters If an array(), they will be posted as JSON parameters
|
Chris@14
|
37 * If a number or string, "/$params" is appended to url
|
Chris@14
|
38 * @param array $extraOptions key=>value pairs of curl options to pass to curl_setopt()
|
Chris@14
|
39 *
|
Chris@14
|
40 * @return array
|
Chris@14
|
41 *
|
Chris@14
|
42 * @throws \WebDriver\Exception\CurlExec only if http error and CURLOPT_FAILONERROR has been set in extraOptions
|
Chris@14
|
43 */
|
Chris@14
|
44 public function execute($requestMethod, $url, $parameters = null, $extraOptions = array());
|
Chris@14
|
45 }
|