mirror of
https://0xacab.org/radar/radar-wp.git
synced 2025-04-18 22:16:30 +02:00
Initial import.
This commit is contained in:
commit
86383280c9
428 changed files with 68738 additions and 0 deletions
19
vendor/guzzle/parser/Guzzle/Parser/Url/UrlParserInterface.php
vendored
Normal file
19
vendor/guzzle/parser/Guzzle/Parser/Url/UrlParserInterface.php
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
namespace Guzzle\Parser\Url;
|
||||
|
||||
/**
|
||||
* URL parser interface
|
||||
*/
|
||||
interface UrlParserInterface
|
||||
{
|
||||
/**
|
||||
* Parse a URL using special handling for a subset of UTF-8 characters in the query string if needed.
|
||||
*
|
||||
* @param string $url URL to parse
|
||||
*
|
||||
* @return array Returns an array identical to what is returned from parse_url(). When an array key is missing from
|
||||
* this array, you must fill it in with NULL to avoid warnings in calling code.
|
||||
*/
|
||||
public function parseUrl($url);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue