You are here

public function ErrorHandler::handleFatal in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/debug/ErrorHandler.php \Symfony\Component\Debug\ErrorHandler::handleFatal()

Handles PHP fatal errors.

Deprecated

since version 2.6, to be removed in 3.0. Use handleFatalError() instead.

File

vendor/symfony/debug/ErrorHandler.php, line 708

Class

ErrorHandler
A generic ErrorHandler for the PHP engine.

Namespace

Symfony\Component\Debug

Code

public function handleFatal() {
  @trigger_error('The ' . __METHOD__ . ' method is deprecated since version 2.6 and will be removed in 3.0. Use the handleFatalError() method instead.', E_USER_DEPRECATED);
  static::handleFatalError();
}