comparison vendor/symfony/dependency-injection/Loader/Configurator/Traits/CallTrait.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents 1fec387a4317
children
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
23 * 23 *
24 * @return $this 24 * @return $this
25 * 25 *
26 * @throws InvalidArgumentException on empty $method param 26 * @throws InvalidArgumentException on empty $method param
27 */ 27 */
28 final public function call($method, array $arguments = array()) 28 final public function call($method, array $arguments = [])
29 { 29 {
30 $this->definition->addMethodCall($method, static::processValue($arguments, true)); 30 $this->definition->addMethodCall($method, static::processValue($arguments, true));
31 31
32 return $this; 32 return $this;
33 } 33 }