Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/event-dispatcher/GenericEvent.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 |
---|---|
109 * | 109 * |
110 * @return bool | 110 * @return bool |
111 */ | 111 */ |
112 public function hasArgument($key) | 112 public function hasArgument($key) |
113 { | 113 { |
114 return array_key_exists($key, $this->arguments); | 114 return \array_key_exists($key, $this->arguments); |
115 } | 115 } |
116 | 116 |
117 /** | 117 /** |
118 * ArrayAccess for argument getter. | 118 * ArrayAccess for argument getter. |
119 * | 119 * |