Issue #3469644: Coding standards - PHPCS (fix failing pipeline)
5 unresolved threads
Closes #3469644
Merge request reports
Activity
25 * @param \Drupal\Core\Form\FormBuilderInterface $form_builder 26 * The form builder service. 27 */ 17 28 public function __construct(FormBuilderInterface $form_builder) { 18 29 $this->formBuilder = $form_builder; 19 30 } 20 31 21 32 /** 22 * 33 * {@inheritdoc} 23 34 */ 24 35 public static function create(ContainerInterface $container) { 25 36 return new static( 26 $container->get('form_builder'), 27 ); 37 $container->get('form_builder'), changed this line in version 2 of the diff
9 9 use Drupal\Core\StringTranslation\TranslationInterface; 10 10 11 11 /** 12 * 12 * Service to alter forms to hide submit buttons. changed this line in version 2 of the diff
25 52 } 26 53 27 54 /** 55 * Alters forms by optionally hiding the submit button. changed this line in version 2 of the diff
53 82 } 54 83 55 84 /** 85 * Attaches JavaScript and CSS libraries to forms. "Attaches hide submit Javascript and CSS libraries to forms"
Edited by aaron.ferrischanged this line in version 2 of the diff
2 2 3 3 /** 4 4 * @file 5 * {@inheritdoc} 6 * Hide the submit button after clicked to prevent/reduce duplicate postings. 7 * 8 * Installation and update procedures are defined in this file. 5 * Install, update and uninstall functions for the Hide Submit module. 9 6 */ 10 7 11 8 /** 12 9 * Implements hook_uninstall(). 10 * 11 * Hide the submit button after clicked to prevent/reduce duplicate postings. changed this line in version 2 of the diff
Please register or sign in to reply