Is there any possibility to bind Objects into Variable in Symfony 5 using Attributes?
For example, I have class:
class Users
{
private $servers;
}
I has property $servers. I want to bind some object to this class using Attributes with some functionality and validation.