symfony/console
particleThe Console component eases the creation of beautiful and testable command line interfaces.
The Console component eases the creation of beautiful and testable command line interfaces.
The ErrorHandler component provides tools to manage errors and ease debugging PHP code. use SymfonyComponentErrorHandlerDebug; use SymfonyComponentErrorHandlerErrorHandler; use SymfonyComponentErrorHandlerDebugClassLoader; Debug::enable(); // or enable only one feature //ErrorHandler::register(); //DebugClassLoader::enable(); // If you want a custom generic template when debug is not enabled // HtmlErrorRenderer::setTemplate(‘/path/to/custom/error.html.php’); $data = ErrorHandler::call(static function () use ($filename, $datetimeFormat) { // if any […]
The Process component executes commands in sub-processes.