Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

UriFactoryInterface.php

Namespace

Psr\Http\Message

File

vendor/psr/http-factory/src/UriFactoryInterface.php

View source
<?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;

}

Interfaces

Title Deprecated Summary
UriFactoryInterface

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal