The return type could not be reliably inferred; please add a @return annotation.
Our type inference engine in quite powerful, but sometimes the code does not
provide enough clues to go by. In these cases we request you to add a @return
annotation as described here.
Loading history...
28
{
29
if ($this->enableCustomLogin) {
30
return new RouteCollection();
31
}
32
33
$fileLocator = new FileLocator([__DIR__.'/../../Resources/config']);
34
$loaderResolver = new LoaderResolver([new XmlFileLoader($fileLocator)]);
35
$delegatingLoader = new DelegatingLoader($loaderResolver);
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@returnannotation as described here.