Coding standard - Super globals must not be accessed directly

DrupalPractice standard says that super globals should not be accessed directly. There are two places where devel code does this:

devel.module
-----------------------------------------------------------------------------------------------------------
 684 | ERROR | The $_GET super global must not be accessed directly; inject the request_stack service
     |       | and use $stack->getCurrentRequest()->query instead
     |       | (DrupalPractice.Variables.GetRequestData.SuperglobalAccessed)
-----------------------------------------------------------------------------------------------------------


devel_generate/src/DevelGenerateBase.php
-----------------------------------------------------------------------------------------------------------
 116 | ERROR | The $_REQUEST super global must not be accessed directly; inject the request_stack service
     |       | and use $stack->getCurrentRequest()->request->get('skip-fields') instead 
     |       | (DrupalPractice.Variables.GetRequestData.SuperglobalAccessedWithVar)
-----------------------------------------------------------------------------------------------------------
Edited by Jonathan Smith