diff --git a/core/lib/Drupal/Core/Entity/Controller/EntityController.php b/core/lib/Drupal/Core/Entity/Controller/EntityController.php index cf03c6b..0af9638 100644 --- a/core/lib/Drupal/Core/Entity/Controller/EntityController.php +++ b/core/lib/Drupal/Core/Entity/Controller/EntityController.php @@ -35,7 +35,7 @@ class EntityController implements ContainerInjectionInterface { protected $entityManager; /** - * Constructs a new EntityHandler. + * Constructs a new EntityController. * * @param \Drupal\Core\Entity\EntityManagerInterface $entity_manager * The entity manager. diff --git a/core/lib/Drupal/Core/Entity/Controller/EntityListController.php b/core/lib/Drupal/Core/Entity/Controller/EntityListController.php index 1e9fcc3..75237e7 100644 --- a/core/lib/Drupal/Core/Entity/Controller/EntityListController.php +++ b/core/lib/Drupal/Core/Entity/Controller/EntityListController.php @@ -10,7 +10,7 @@ use Drupal\Core\Controller\ControllerBase; /** - * Defines a generic handler to list entities. + * Defines a generic controller to list entities. */ class EntityListController extends ControllerBase { diff --git a/core/modules/aggregator/src/FeedForm.php b/core/modules/aggregator/src/FeedForm.php index 2342123..cab27d2 100644 --- a/core/modules/aggregator/src/FeedForm.php +++ b/core/modules/aggregator/src/FeedForm.php @@ -12,7 +12,7 @@ use Drupal\Core\Url; /** - * Form storage handler for the aggregator feed edit forms. + * Form handler for the aggregator feed edit forms. */ class FeedForm extends ContentEntityForm { diff --git a/core/modules/block_content/src/BlockContentForm.php b/core/modules/block_content/src/BlockContentForm.php index 7ad6fee..ffe2f99 100644 --- a/core/modules/block_content/src/BlockContentForm.php +++ b/core/modules/block_content/src/BlockContentForm.php @@ -16,7 +16,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface; /** - * Form storage handler for the custom block edit forms. + * Form handler for the custom block edit forms. */ class BlockContentForm extends ContentEntityForm { diff --git a/core/modules/comment/src/CommentForm.php b/core/modules/comment/src/CommentForm.php index 482ca50..1a26441 100644 --- a/core/modules/comment/src/CommentForm.php +++ b/core/modules/comment/src/CommentForm.php @@ -20,7 +20,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface; /** - * Base for storage handler for comment forms. + * Base handler for comment forms. */ class CommentForm extends ContentEntityForm { diff --git a/core/modules/field_ui/src/EntityFormModeListBuilder.php b/core/modules/field_ui/src/EntityFormModeListBuilder.php index 7d243d7..9d1e2f9 100644 --- a/core/modules/field_ui/src/EntityFormModeListBuilder.php +++ b/core/modules/field_ui/src/EntityFormModeListBuilder.php @@ -15,7 +15,7 @@ class EntityFormModeListBuilder extends EntityDisplayModeListBuilder { /** - * Filters entities based on their storage handlers. + * Filters entities based on their form handlers. * * @param $entity_type * The entity type of the entity that needs to be validated. diff --git a/core/modules/node/src/NodeForm.php b/core/modules/node/src/NodeForm.php index a36d723..e273fc3 100644 --- a/core/modules/node/src/NodeForm.php +++ b/core/modules/node/src/NodeForm.php @@ -14,7 +14,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface; /** - * Form storage handler for the node edit forms. + * Form handler for the node edit forms. */ class NodeForm extends ContentEntityForm { diff --git a/core/modules/node/src/NodeTypeForm.php b/core/modules/node/src/NodeTypeForm.php index adcceb4..8c85e47 100644 --- a/core/modules/node/src/NodeTypeForm.php +++ b/core/modules/node/src/NodeTypeForm.php @@ -15,7 +15,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface; /** - * Form storage handler for node type forms. + * Form handler for node type forms. */ class NodeTypeForm extends BundleEntityFormBase { diff --git a/core/modules/shortcut/src/ShortcutForm.php b/core/modules/shortcut/src/ShortcutForm.php index ba02664..f2f16e9 100644 --- a/core/modules/shortcut/src/ShortcutForm.php +++ b/core/modules/shortcut/src/ShortcutForm.php @@ -11,7 +11,7 @@ use Drupal\Core\Form\FormStateInterface; /** - * Form storage handler for the shortcut entity forms. + * Form handler for the shortcut entity forms. */ class ShortcutForm extends ContentEntityForm { diff --git a/core/modules/shortcut/src/ShortcutSetForm.php b/core/modules/shortcut/src/ShortcutSetForm.php index f73b1dd..7bb6ced 100644 --- a/core/modules/shortcut/src/ShortcutSetForm.php +++ b/core/modules/shortcut/src/ShortcutSetForm.php @@ -11,7 +11,7 @@ use Drupal\Core\Form\FormStateInterface; /** - * Form storage handler for the shortcut set entity edit forms. + * Form handler for the shortcut set entity edit forms. */ class ShortcutSetForm extends BundleEntityFormBase { diff --git a/core/modules/taxonomy/src/TermForm.php b/core/modules/taxonomy/src/TermForm.php index e242656..ba1dcb3 100644 --- a/core/modules/taxonomy/src/TermForm.php +++ b/core/modules/taxonomy/src/TermForm.php @@ -11,7 +11,7 @@ use Drupal\Core\Form\FormStateInterface; /** - * Base for storage handler for taxonomy term edit forms. + * Base for handler for taxonomy term edit forms. */ class TermForm extends ContentEntityForm { diff --git a/core/modules/user/src/ProfileForm.php b/core/modules/user/src/ProfileForm.php index 664b408..c8cc613 100644 --- a/core/modules/user/src/ProfileForm.php +++ b/core/modules/user/src/ProfileForm.php @@ -13,7 +13,7 @@ use Drupal\Core\Language\LanguageManagerInterface; /** - * Form storage handler for the profile forms. + * Form handler for the profile forms. */ class ProfileForm extends AccountForm { diff --git a/core/modules/user/src/RegisterForm.php b/core/modules/user/src/RegisterForm.php index d16d57d..d236dd3 100644 --- a/core/modules/user/src/RegisterForm.php +++ b/core/modules/user/src/RegisterForm.php @@ -13,7 +13,7 @@ use Drupal\Core\Language\LanguageManagerInterface; /** - * Form storage handler for the user register forms. + * Form handler for the user register forms. */ class RegisterForm extends AccountForm {