Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm creating a console command in Symfony 2.1.

While developing this I am having issues with errors being swallowed.

Some errors bubble up and display fine others just cause the application to exit without displaying anything.

In the example below getFile is a function but there is no error regarding the missing brackets. The script simply exits.

$this->extract($file->getFile->getPathname());

I have set error level to E_ALL | E_STRICT and ensured that Display errors in on in the cli version of php.ini.

How do I get PHP to display the errors?

share|improve this question
Just to confirm, your are running in dev mode with debug on? – Cerad Sep 11 '12 at 15:31

1 Answer

up vote 0 down vote accepted

I found the cause of this, it was a try catch block within my own code swallowing the error.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.