I have a private function to return an array of options, those options indicate a callback and other options such as template, form, etc. Here the code:
  /**
         * @return array
         */
        private function options()
        {
            $options = [
                'general'       => [
                    'form'           => GeneralConfigType::class,
                    'template'       => 'general.html.twig',
                    'title'          => 'Configuración General',
                    'ignoreFields'   => ['slider', 'social'],
                    'uploadedFields' => [],
                    'callbacks'      => ['generalData']
                ],
                'business'      => [
                    'form'           => ConfigurationType::class,
                    'template'       => 'business.html.twig',
                    'title'          => 'Configuración de Empresa',
                    'ignoreFields'   => [],
                    'uploadedFields' => ['image','favicon','login_icon','sidebar_icon'],
                    'callbacks'      => ['businessImage']
                ],
      ];
            return $options;
}
Now here is my doubt, in addition to indicate the function you have to execute in the key callback, Can I pass on the variables I'm going to need in that callback? I've tried several ways and they haven't worked.
Example:
Before:
'callbacks'      => ['generalData']
After:
In this example I'm assigning the '$', but I could do it if the only string, I'm just looking for a way to pass to the callback the variables it needs and no more.
'callbacks'      => ['generalData' => '$configurationData, $configuration, $form, $request']
And this code would be where everything would be executed in other method:
    if (!empty($options[ 'callbacks' ])) {
       foreach ($options[ 'callbacks' ] as $callback => $variables) {
          $this->$callback($variables);         
       }           
    }
 
     
    