From 31fdccf5beed498e10fc15bc34ad91169ca3f9e1 Mon Sep 17 00:00:00 2001 From: cmnty-peterm Date: Thu, 22 Oct 2015 16:06:17 +0200 Subject: [PATCH] Incorrect syntax to call load from $loader The > sign was not present for calling the load on $loader --- DependencyInjection/KPhoenRulerZExtension.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DependencyInjection/KPhoenRulerZExtension.php b/DependencyInjection/KPhoenRulerZExtension.php index c4781af..27b8b89 100644 --- a/DependencyInjection/KPhoenRulerZExtension.php +++ b/DependencyInjection/KPhoenRulerZExtension.php @@ -43,7 +43,7 @@ private function configureExecutors(YamlFileLoader $loader, array $config) { foreach ($this->supportedExecutors as $executor) { if ($config['executors'][$executor]) { - $loader-load(sprintf('executors/%s.yml', $executor)); + $loader->load(sprintf('executors/%s.yml', $executor)); } } }