You are here

MethodInterface.php in Persistent URL 8

File

src/Plugin/Purl/Method/MethodInterface.php
View source
<?php

namespace Drupal\purl\Plugin\Purl\Method;

use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing;
interface MethodInterface {
  public function contains(Request $request, $modifier);
  public function enterContext($modifier, $path, array &$options);
  public function exitContext($modifier, $path, array &$options);

}

Interfaces

Namesort descending Description
MethodInterface