add higher priority to module routing

This commit is contained in:
Manuel Raynaud
2013-10-08 13:22:06 +02:00
parent 32764b25c3
commit e8fd822795
2 changed files with 2 additions and 2 deletions

View File

@@ -84,7 +84,7 @@ class RegisterRouterPass implements CompilerPassInterface
$container->setDefinition("router.".$moduleCode, $definition);
$chainRouter->addMethodCall("add", array(new Reference("router.".$moduleCode), 1));
$chainRouter->addMethodCall("add", array(new Reference("router.".$moduleCode), 150));
}
}
}