You are here

public static function BaseInterface::getMethods in DRD Agent 4.0.x

Same name in this branch
  1. 4.0.x src/Crypt/BaseInterface.php \Drupal\drd_agent\Crypt\BaseInterface::getMethods()
  2. 4.0.x src/Agent/Auth/BaseInterface.php \Drupal\drd_agent\Agent\Auth\BaseInterface::getMethods()
Same name and namespace in other branches
  1. 8.3 src/Crypt/BaseInterface.php \Drupal\drd_agent\Crypt\BaseInterface::getMethods()

Get a list of crypt methods, either just their ids or instances of each.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container:

bool $instances: Whether to receive ids (FALSE) or instances (TRUE).

Return value

array List of crypt methods.

1 method overrides BaseInterface::getMethods()
Base::getMethods in src/Crypt/Base.php
Get a list of crypt methods, either just their ids or instances of each.

File

src/Crypt/BaseInterface.php, line 39

Class

BaseInterface
Provides an interface for encryption.

Namespace

Drupal\drd_agent\Crypt

Code

public static function getMethods(ContainerInterface $container, $instances = FALSE) : array;