for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Drupal\graphql\Plugin\GraphQL;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Plugin\DefaultPluginManager;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Traversable;
class SchemaPluginManager extends DefaultPluginManager {
/**
* {@inheritdoc}
*/
public function __construct(
$pluginSubdirectory,
Traversable $namespaces,
ModuleHandlerInterface $moduleHandler,
$pluginInterface,
$pluginAnnotationName,
$pluginType
) {
$this->alterInfo($pluginType);
parent::__construct(
$namespaces,
$moduleHandler,
$pluginAnnotationName
);
}