SupernovaGenerator.php in Drupal 10
File
core/modules/help/tests/modules/help_test/src/SupernovaGenerator.php
View source
<?php
namespace Drupal\help_test;
use Drupal\Core\Routing\UrlGeneratorInterface;
use Symfony\Component\Routing\RequestContext;
class SupernovaGenerator implements UrlGeneratorInterface {
public function setContext(RequestContext $context) {
throw new \Exception();
}
public function getContext() : RequestContext {
throw new \Exception();
}
public function generate($name, $parameters = [], $referenceType = self::ABSOLUTE_PATH) : string {
throw new \Exception();
}
public function getPathFromRoute($name, $parameters = []) {
throw new \Exception();
}
public function generateFromRoute($name, $parameters = [], $options = [], $collect_bubbleable_metadata = FALSE) {
throw new \Exception();
}
public function supports($name) {
throw new \Exception();
}
public function getRouteDebugMessage($name, array $parameters = []) {
throw new \Exception();
}
}