comparison vendor/symfony/routing/Loader/Configurator/Traits/RouteTrait.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
122 * 122 *
123 * @return $this 123 * @return $this
124 */ 124 */
125 final public function controller($controller) 125 final public function controller($controller)
126 { 126 {
127 $this->route->addDefaults(array('_controller' => $controller)); 127 $this->route->addDefaults(['_controller' => $controller]);
128 128
129 return $this; 129 return $this;
130 } 130 }
131 } 131 }