Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/vendor/theseer/../egulias/.././unicodeveloper/.././nunomaduro/../mews/../ramsey/.././paypal/../unicodeveloper/././../theseer/../iyzico/../ralouphie/../paypal/../psr/http-factory/src
الملفات الموجودة في هذا الـ Path:
.
..
RequestFactoryInterface.php
ResponseFactoryInterface.php
ServerRequestFactoryInterface.php
StreamFactoryInterface.php
UploadedFileFactoryInterface.php
UriFactoryInterface.php

مشاهدة ملف: UriFactoryInterface.php

<?php

namespace Psr\Http\Message;

interface UriFactoryInterface
{
    /**
     * Create a new URI.
     *
     * @param string $uri
     *
     * @return UriInterface
     *
     * @throws \InvalidArgumentException If the given URI cannot be parsed.
     */
    public function createUri(string $uri = ''): UriInterface;
}