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...
26
{
27
if ($this->enableCustomLogin) {
28
return new RouteCollection();
29
}
30
31
$fileLocator = new FileLocator([__DIR__.'/../../Resources/config']);
32
$loaderResolver = new LoaderResolver([new XmlFileLoader($fileLocator)]);
33
$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
@return
annotation as described here.