1 | <?php |
||
9 | class SchemaPluginManager extends DefaultPluginManager { |
||
10 | |||
11 | /** |
||
12 | * SchemaPluginManager constructor. |
||
13 | * |
||
14 | * @param bool|string $pluginSubdirectory |
||
15 | * The plugin's subdirectory. |
||
16 | * @param \Traversable $namespaces |
||
17 | * An object that implements \Traversable which contains the root paths |
||
18 | * keyed by the corresponding namespace to look for plugin implementations. |
||
19 | * @param \Drupal\Core\Extension\ModuleHandlerInterface $moduleHandler |
||
20 | * The module handler. |
||
21 | * @param \Drupal\Core\Cache\CacheBackendInterface $cacheBackend |
||
22 | * The cache backend. |
||
23 | * @param string|null $pluginInterface |
||
24 | * The interface each plugin should implement. |
||
25 | * @param string $pluginAnnotationName |
||
26 | * The name of the annotation that contains the plugin definition. |
||
27 | */ |
||
28 | public function __construct( |
||
48 | |||
49 | } |
||
50 |