Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/dependency-injection/ChildDefinition.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 |
---|---|
69 * | 69 * |
70 * @throws OutOfBoundsException When the argument does not exist | 70 * @throws OutOfBoundsException When the argument does not exist |
71 */ | 71 */ |
72 public function getArgument($index) | 72 public function getArgument($index) |
73 { | 73 { |
74 if (array_key_exists('index_'.$index, $this->arguments)) { | 74 if (\array_key_exists('index_'.$index, $this->arguments)) { |
75 return $this->arguments['index_'.$index]; | 75 return $this->arguments['index_'.$index]; |
76 } | 76 } |
77 | 77 |
78 return parent::getArgument($index); | 78 return parent::getArgument($index); |
79 } | 79 } |