Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / console / ConsoleEvents.php
index b3571e9afb3bc228326163581a2e70d0daacfee8..bf6cab9a19ab4dced3a5500e7220c01fe39d09c9 100644 (file)
@@ -24,8 +24,6 @@ final class ConsoleEvents
      * before they are handled to the command.
      *
      * @Event("Symfony\Component\Console\Event\ConsoleCommandEvent")
-     *
-     * @var string
      */
     const COMMAND = 'console.command';
 
@@ -34,20 +32,29 @@ final class ConsoleEvents
      * executed by the console.
      *
      * @Event("Symfony\Component\Console\Event\ConsoleTerminateEvent")
-     *
-     * @var string
      */
     const TERMINATE = 'console.terminate';
 
     /**
-     * The EXCEPTION event occurs when an uncaught exception appears.
+     * The EXCEPTION event occurs when an uncaught exception appears
+     * while executing Command#run().
      *
      * This event allows you to deal with the exception or
      * to modify the thrown exception.
      *
      * @Event("Symfony\Component\Console\Event\ConsoleExceptionEvent")
      *
-     * @var string
+     * @deprecated The console.exception event is deprecated since version 3.3 and will be removed in 4.0. Use the console.error event instead.
      */
     const EXCEPTION = 'console.exception';
+
+    /**
+     * The ERROR event occurs when an uncaught exception or error appears.
+     *
+     * This event allows you to deal with the exception/error or
+     * to modify the thrown exception.
+     *
+     * @Event("Symfony\Component\Console\Event\ConsoleErrorEvent")
+     */
+    const ERROR = 'console.error';
 }