1 | <?php |
||
12 | class EntityProviderManager extends DefaultPluginManager { |
||
13 | |||
14 | /** |
||
15 | * Constructs a new EntityProviderManager. |
||
16 | * |
||
17 | * @param \Traversable $namespaces |
||
18 | * An object that implements \Traversable which contains the root paths |
||
19 | * keyed by the corresponding namespace to look for plugin implementations. |
||
20 | * @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend |
||
21 | * Cache backend instance to use. |
||
22 | * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler |
||
23 | * The module handler. |
||
24 | */ |
||
25 | public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) { |
||
31 | |||
32 | } |
||
33 |