@@ -19,7 +19,7 @@ |
||
19 | 19 | /** |
20 | 20 | * {@inheritdoc} |
21 | 21 | */ |
22 | - public function getForm(array &$form = [], FormStateInterface &$form_state = NULL) { |
|
22 | + public function getForm(array &$form = [], FormStateInterface&$form_state = NULL) { |
|
23 | 23 | // Set a wrapper container for us to replace the form on ajax call. |
24 | 24 | $form['#prefix'] = '<div id="entity-browser-form">'; |
25 | 25 | $form['#suffix'] = '</div>'; |
@@ -19,10 +19,10 @@ |
||
19 | 19 | /** |
20 | 20 | * {@inheritdoc} |
21 | 21 | */ |
22 | - public function getForm(array &$form = [], FormStateInterface &$form_state = NULL) { |
|
22 | + public function getForm(array &$form = [], FormStateInterface&$form_state = NULL) { |
|
23 | 23 | $element = []; |
24 | 24 | foreach ($this->widget_ids as $id => $label) { |
25 | - $name = 'tab_selector_' . $id; |
|
25 | + $name = 'tab_selector_'.$id; |
|
26 | 26 | $element[$name] = [ |
27 | 27 | '#type' => 'button', |
28 | 28 | '#attributes' => ['class' => ['tab']], |
@@ -19,7 +19,7 @@ |
||
19 | 19 | /** |
20 | 20 | * {@inheritdoc} |
21 | 21 | */ |
22 | - public function getForm(array &$form, FormStateInterface &$form_state) { |
|
22 | + public function getForm(array &$form, FormStateInterface&$form_state) { |
|
23 | 23 | return []; |
24 | 24 | } |
25 | 25 |