I know this is probably not possible, but is there a clean way to use a PHP class constant within a YAML config/services/etc. file for Symfony2?
For example, if I have this:
namespace MyBundleDependencyInjection;
class MyClass
{
const MY_CONST = 'cookies';
}
Is something like this possible (in a .yml file):
services:
my_service:
class: SomeClass
arguments:
- %MyBundleDependencyInjectionMyClass::MY_CONST%
That'd go a long way in helping maintain consistency between the two.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…