Файл: concrete5.7.5.6/concrete/vendor/league/url/src/Components/QueryInterface.php
Строк: 31
<?php
/**
* This file is part of the League.url library
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/url/
* @version 3.3.5
* @package League.url
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace LeagueUrlComponents;
/**
* A common interface for URL Query component
*
* @package League.url
* @since 3.0.0
*/
interface QueryInterface extends ComponentArrayInterface
{
/**
* modify/update a Query component
*
* @param mixed $data the data can be a array, a Traversable or a string
*
* @return void
*/
public function modify($data);
}