Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/http-foundation/Session/Flash/FlashBag.php @ 18:af1871eacc83
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:33:08 +0100 |
parents | 129ea1e6d783 |
children |
comparison
equal
deleted
inserted
replaced
17:129ea1e6d783 | 18:af1871eacc83 |
---|---|
121 /** | 121 /** |
122 * {@inheritdoc} | 122 * {@inheritdoc} |
123 */ | 123 */ |
124 public function has($type) | 124 public function has($type) |
125 { | 125 { |
126 return array_key_exists($type, $this->flashes) && $this->flashes[$type]; | 126 return \array_key_exists($type, $this->flashes) && $this->flashes[$type]; |
127 } | 127 } |
128 | 128 |
129 /** | 129 /** |
130 * {@inheritdoc} | 130 * {@inheritdoc} |
131 */ | 131 */ |