comparison vendor/symfony/dependency-injection/ChildDefinition.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
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 }