Skip to content
Snippets Groups Projects
Commit 1ed3c6f1 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2448915 by martin107, joshi.rohit100: FieldStorageAddForm constructor annotation bug

parent f8bf34c6
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ class FieldStorageAddForm extends FormBase {
/**
* The query factory to create entity queries.
*
* @var \Drupal\Core\Entity\Query\QueryFactoryInterface
* @var \Drupal\Core\Entity\Query\QueryFactory
*/
public $queryFactory;
......@@ -72,10 +72,10 @@ class FieldStorageAddForm extends FormBase {
* The entity manager.
* @param \Drupal\Core\Field\FieldTypePluginManagerInterface $field_type_plugin_manager
* The field type plugin manager.
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The configuration factory.
* @param \Drupal\Core\Entity\Query\QueryFactory $query_factory
* The entity query factory.
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The configuration factory.
*/
public function __construct(EntityManagerInterface $entity_manager, FieldTypePluginManagerInterface $field_type_plugin_manager, QueryFactory $query_factory, ConfigFactoryInterface $config_factory) {
$this->entityManager = $entity_manager;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment