How to set the exit status code in a Symfony2 command?

In the base Command class: if ($this->code) { $statusCode = call_user_func($this->code, $input, $output); } else { $statusCode = $this->execute($input, $output); } return is_numeric($statusCode) ? (int) $statusCode : 0; So simply return the exit code from your execute() function. Your console command will exit with this code as long as it is a numeric value.

Access parameter from the Command Class

Simple way, let command extend ContainerAwareCommand $this->getContainer()->getParameter(‘parameter_name’); or You should create seperate service class $service = $this->getContainer()->get(‘less_css_compiler’); //services.yml services: less_css_compiler: class: MyVendor\MyBundle\Service\LessCompiler arguments: [%less_compiler%] In service class, create constructor like above you mentioned public function __construct($less_compiler) { $this->less_compiler = $less_compiler; } Call the service from command class. Thats it. Reason: You are making command class … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)