diff --git a/core/modules/ban/lib/Drupal/ban/Form/BanAdmin.php b/core/modules/ban/lib/Drupal/ban/Form/BanAdmin.php
index 29ca186..274e46f 100644
--- a/core/modules/ban/lib/Drupal/ban/Form/BanAdmin.php
+++ b/core/modules/ban/lib/Drupal/ban/Form/BanAdmin.php
@@ -17,22 +17,12 @@
 class BanAdmin extends FormBase {
 
   /**
-   * @var \Drupal\ban\BanIpManager
+   * Construction.
    */
   protected $ipManager;
-
-  /**
-   * Constructs a new BanAdmin object.
-   *
-   * @param \Drupal\ban\BanIpManager $ip_manager
-   */
   public function __construct(BanIpManager $ip_manager) {
     $this->ipManager = $ip_manager;
   }
-
-  /**
-   * {@inheritdoc}
-   */
   public static function create(ContainerInterface $container) {
     return new static(
       $container->get('ban.ip_manager')
diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockFormController.php b/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockFormController.php
index 4ad8ba9..5277fac 100644
--- a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockFormController.php
+++ b/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockFormController.php
@@ -21,38 +21,14 @@
 class CustomBlockFormController extends ContentEntityFormController {
 
   /**
-   * The custom block storage.
-   *
-   * @var \Drupal\Core\Entity\EntityStorageControllerInterface
-   */
-  protected $customBlockStorage;
-
-  /**
-   * The language manager.
-   *
-   * @var \Drupal\Core\Language\LanguageManager
-   */
-  protected $languageManager;
-
-  /**
-   * Constructs a CustomBlockFormController object.
-   *
-   * @param \Drupal\Core\Entity\EntityManagerInterface $entity_manager
-   *   The entity manager.
-   * @param \Drupal\Core\Entity\EntityStorageControllerInterface $custom_block_storage
-   *   The custom block storage controller.
-   * @param \Drupal\Core\Language\LanguageManager $language_manager
-   *   The language manager.
+   * Construction.
    */
+  protected $customBlockStorage, $languageManager;
   public function __construct(EntityManagerInterface $entity_manager, EntityStorageControllerInterface $custom_block_storage, LanguageManager $language_manager) {
     parent::__construct($entity_manager);
     $this->customBlockStorage = $custom_block_storage;
     $this->languageManager = $language_manager;
   }
-
-  /**
-   * {@inheritdoc}
-   */
   public static function create(ContainerInterface $container) {
     $entity_manager = $container->get('entity.manager');
     return new static(
