I have some parameter values in app/config/parameters.yml
parameters:
database_host: 127.0.0.1
database_port: null
database_name: database_name
...
igv: 0.18
isc: 0.18
Now, I want to use the parameters in a Custom class in AppBundle/CustomClass.php. How can I use this parameters? I try $this->container->get('igv') but not works.