Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/http-kernel/Exception/GoneHttpException.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 |
---|---|
21 * @param \Exception $previous The previous exception | 21 * @param \Exception $previous The previous exception |
22 * @param int $code The internal exception code | 22 * @param int $code The internal exception code |
23 */ | 23 */ |
24 public function __construct($message = null, \Exception $previous = null, $code = 0) | 24 public function __construct($message = null, \Exception $previous = null, $code = 0) |
25 { | 25 { |
26 parent::__construct(410, $message, $previous, array(), $code); | 26 parent::__construct(410, $message, $previous, [], $code); |
27 } | 27 } |
28 } | 28 } |