Mercurial > hg > cmmr2012-drupal-site
comparison vendor/symfony/event-dispatcher/GenericEvent.php @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | a9cd425dd02b |
children |
comparison
equal
deleted
inserted
replaced
4:a9cd425dd02b | 5:12f9dff5fda9 |
---|---|
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 * |