check for each contained router if it can warmup
Overrides WarmableInterface::warmUp
public function warmUp($cacheDir) {
foreach ($this
->all() as $router) {
if ($router instanceof WarmableInterface) {
$router
->warmUp($cacheDir);
}
}
}