You are here

public static function Routes::create in Entity Share 8.2

Same name and namespace in other branches
  1. 8.3 modules/entity_share_server/src/Routing/Routes.php \Drupal\entity_share_server\Routing\Routes::create()
  2. 8 modules/entity_share_server/src/Routing/Routes.php \Drupal\entity_share_server\Routing\Routes::create()

Instantiates a new instance of this class.

This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The service container this instance should use.

Overrides ContainerInjectionInterface::create

File

modules/entity_share_server/src/Routing/Routes.php, line 48

Class

Routes
Defines dynamic routes.

Namespace

Drupal\entity_share_server\Routing

Code

public static function create(ContainerInterface $container) {

  /* @var \Drupal\Core\Authentication\AuthenticationCollectorInterface $auth_collector */
  $auth_collector = $container
    ->get('authentication_collector');
  return new static($auth_collector);
}