for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This class takes care of converting a Semantic URL into a Standard one, so that
* the request parser can do its work and explode everything into an array of values.
*
* @package ElkArte Forum
* @copyright ElkArte Forum contributors
* @license BSD http://opensource.org/licenses/BSD-3-Clause (see accompanying LICENSE.txt file)
* @version 2.0 dev
*/
namespace ElkArte\UrlGenerator\Standard;
use ElkArte\UrlGenerator\AbstractParseQuery;
* Class ParseQuery
* @package ElkArte\UrlGenerator\Standard
class ParseQuery extends AbstractParseQuery
{
* Public facing function that converts the query part of the URL from the
* semantic format back to the standard ElkArte one
* @param string $query The standard query
* @return string $query The corresponding standard query
public function parse($query)
return $query;
}