Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / finder / Shell / Command.php
index 455b2613777d7021a162fa801de1dc1ac35ae4ea..b66ea339dc8c3db76abd73eee708cee0e6ca9601 100644 (file)
@@ -11,7 +11,7 @@
 
 namespace Symfony\Component\Finder\Shell;
 
-@trigger_error('The '.__NAMESPACE__.'\Command class is deprecated since version 2.8 and will be removed in 3.0.', E_USER_DEPRECATED);
+@trigger_error('The '.__NAMESPACE__.'\Command class is deprecated since Symfony 2.8 and will be removed in 3.0.', E_USER_DEPRECATED);
 
 /**
  * @author Jean-François Simon <contact@jfsimon.fr>
@@ -20,19 +20,8 @@ namespace Symfony\Component\Finder\Shell;
  */
 class Command
 {
-    /**
-     * @var Command|null
-     */
     private $parent;
-
-    /**
-     * @var array
-     */
     private $bits = array();
-
-    /**
-     * @var array
-     */
     private $labels = array();
 
     /**
@@ -40,11 +29,6 @@ class Command
      */
     private $errorHandler;
 
-    /**
-     * Constructor.
-     *
-     * @param Command|null $parent Parent command
-     */
     public function __construct(Command $parent = null)
     {
         $this->parent = $parent;
@@ -63,8 +47,6 @@ class Command
     /**
      * Creates a new Command instance.
      *
-     * @param Command|null $parent Parent command
-     *
      * @return self
      */
     public static function create(Command $parent = null)
@@ -222,8 +204,6 @@ class Command
     }
 
     /**
-     * @param \Closure $errorHandler
-     *
      * @return $this
      */
     public function setErrorHandler(\Closure $errorHandler)