I'd like to retrieve the Global Parameters from config.yml to entity
    twig:
    ..
        globals:
            image404: image-missing.png
and i want use this param from my static var like:
class Foo extends Bar {
    private static $image404 = "HERE GLOBAL PARAM";
 
     
     
    