isActualFile($staticFilePath = $sitePath.'/web/'.$uri)) { return $staticFilePath; } return false; } /** * Get the fully resolved path to the application's front controller. * * @param string $sitePath * @param string $siteName * @param string $uri * @return string */ public function frontControllerPath($sitePath, $siteName, $uri) { if (file_exists($frontControllerPath = $sitePath.'/web/app_dev.php')) { return $frontControllerPath; } elseif (file_exists($frontControllerPath = $sitePath.'/web/app.php')) { return $frontControllerPath; } elseif (file_exists($frontControllerPath = $sitePath.'/web/index.php')) { return $frontControllerPath; } } }