Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / finder / Exception / ShellCommandFailureException.php
index 10251bff96dba308539ed310118b7d2df0d41542..db85e682d91117c02eb6f5412e9e2378394feed0 100644 (file)
@@ -11,7 +11,7 @@
 
 namespace Symfony\Component\Finder\Exception;
 
-@trigger_error('The '.__NAMESPACE__.'\ShellCommandFailureException class is deprecated since version 2.8 and will be removed in 3.0.', E_USER_DEPRECATED);
+@trigger_error('The '.__NAMESPACE__.'\ShellCommandFailureException class is deprecated since Symfony 2.8 and will be removed in 3.0.', E_USER_DEPRECATED);
 
 use Symfony\Component\Finder\Adapter\AdapterInterface;
 use Symfony\Component\Finder\Shell\Command;
@@ -23,16 +23,8 @@ use Symfony\Component\Finder\Shell\Command;
  */
 class ShellCommandFailureException extends AdapterFailureException
 {
-    /**
-     * @var Command
-     */
     private $command;
 
-    /**
-     * @param AdapterInterface $adapter
-     * @param Command          $command
-     * @param \Exception|null  $previous
-     */
     public function __construct(AdapterInterface $adapter, Command $command, \Exception $previous = null)
     {
         $this->command = $command;