forked from lino/radar-wp
Initial import.
This commit is contained in:
commit
86383280c9
428 changed files with 68738 additions and 0 deletions
21
vendor/guzzle/parser/Guzzle/Parser/UriTemplate/UriTemplateInterface.php
vendored
Normal file
21
vendor/guzzle/parser/Guzzle/Parser/UriTemplate/UriTemplateInterface.php
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
namespace Guzzle\Parser\UriTemplate;
|
||||
|
||||
/**
|
||||
* Expands URI templates using an array of variables
|
||||
*
|
||||
* @link http://tools.ietf.org/html/rfc6570
|
||||
*/
|
||||
interface UriTemplateInterface
|
||||
{
|
||||
/**
|
||||
* Expand the URI template using the supplied variables
|
||||
*
|
||||
* @param string $template URI Template to expand
|
||||
* @param array $variables Variables to use with the expansion
|
||||
*
|
||||
* @return string Returns the expanded template
|
||||
*/
|
||||
public function expand($template, array $variables);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue