Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/console/Exception/CommandNotFoundException.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 1fec387a4317 |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
24 * @param string $message Exception message to throw | 24 * @param string $message Exception message to throw |
25 * @param array $alternatives List of similar defined names | 25 * @param array $alternatives List of similar defined names |
26 * @param int $code Exception code | 26 * @param int $code Exception code |
27 * @param \Exception $previous Previous exception used for the exception chaining | 27 * @param \Exception $previous Previous exception used for the exception chaining |
28 */ | 28 */ |
29 public function __construct($message, array $alternatives = array(), $code = 0, \Exception $previous = null) | 29 public function __construct($message, array $alternatives = [], $code = 0, \Exception $previous = null) |
30 { | 30 { |
31 parent::__construct($message, $code, $previous); | 31 parent::__construct($message, $code, $previous); |
32 | 32 |
33 $this->alternatives = $alternatives; | 33 $this->alternatives = $alternatives; |
34 } | 34 } |