Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

<?php | |
/** | |
* RequestInterface.php | |
* | |
* NOTICE OF LICENSE | |
* | |
* This source file is subject to the MIT License, which | |
* is bundled with this package in the file LICENSE.txt. | |
* | |
* It is also available on the Internet at the following URL: | |
* https://docs.auroraextensions.com/magento/extensions/2.x/magecroncloudfunctions/LICENSE.txt | |
* | |
* @package AuroraExtensions_MageCronCloudFunctions | |
* @copyright Copyright (C) 2019 Aurora Extensions <support@auroraextensions.com> | |
* @license MIT License | |
*/ | |
namespace AuroraExtensions\MageCronCloudFunctions\Model\Http; | |
interface RequestInterface | |
{ | |
/** | |
* @param array $headers | |
* @return $this | |
*/ | |
public function setHeaders(array $headers); | |
/** | |
* @param string $method | |
* @return $this | |
*/ | |
public function setMethod($method); | |
/** | |
* @param string $uri | |
* @return $this | |
*/ | |
public function setUri($uri); | |
} |