Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/http-kernel/DataCollector/ExceptionDataCollector.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children | 129ea1e6d783 |
comparison
equal
deleted
inserted
replaced
13:5fb285c0d0e3 | 14:1fec387a4317 |
---|---|
30 if (null !== $exception) { | 30 if (null !== $exception) { |
31 $this->data = array( | 31 $this->data = array( |
32 'exception' => FlattenException::create($exception), | 32 'exception' => FlattenException::create($exception), |
33 ); | 33 ); |
34 } | 34 } |
35 } | |
36 | |
37 /** | |
38 * {@inheritdoc} | |
39 */ | |
40 public function reset() | |
41 { | |
42 $this->data = array(); | |
35 } | 43 } |
36 | 44 |
37 /** | 45 /** |
38 * Checks if the exception is not null. | 46 * Checks if the exception is not null. |
39 * | 47 * |