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 ($uri === '/install.php') { return $sitePath.'/web/install.php'; } return $sitePath.'/web/app.php'; } }