mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-23 13:06:02 +03:00
20 lines
419 B
PHP
20 lines
419 B
PHP
<?php
|
|
|
|
namespace Guzzle\Http\Message\Header;
|
|
|
|
/**
|
|
* Interface for creating headers
|
|
*/
|
|
interface HeaderFactoryInterface
|
|
{
|
|
/**
|
|
* Create a header from a header name and a single value
|
|
*
|
|
* @param string $header Name of the header to create
|
|
* @param string $value Value to set on the header
|
|
*
|
|
* @return HeaderInterface
|
|
*/
|
|
public function createHeader($header, $value = null);
|
|
}
|