JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "Modifier.php"
Full Path: /home/u735268861/domains/palsarh.in/public_html/vendor/kreait/firebase-php/src/Firebase/Database/Query/Modifier.php
File size: 401 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace Kreait\Firebase\Database\Query;
use Psr\Http\Message\UriInterface;
/**
* @internal
*/
interface Modifier
{
/**
* Modifies the given URI and returns it.
*/
public function modifyUri(UriInterface $uri): UriInterface;
/**
* Modifies the given value and returns it.
*/
public function modifyValue(mixed $value): mixed;
}