Problem/Motivation
The Drupal\field_group\Form\FieldGroupAddForm use the static method \Drupal::request()
Proposed resolution
Replace use of static method \Drupal::request() by inherited service requestStack
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | field_group-Replace_use_of_static_method_Drupal_request_by_inherited_service_requestStack-3103734-2-D8.patch | 670 bytes | thalles |
Comments
Comment #2
thallesComment #3
berdirYou need to use $this->getRequest(), the propery is set on-demand.
Comment #5
nils.destoop commentedThx for noticing. I committed the fix, but replaced it with the getRequest method.