解析错误:语法错误,第12行的C:\ xampp \ htdocs \ index.php中出现意外的'(',期望')'
------------------------我的C:\ xampp \ htdocs \ index.php文件----------
/**
* phpVMS
*/
$path_to_phpvms_folder = __DIR__;
require $path_to_phpvms_folder.'/bootstrap/autoload.php';
$app = require_once $path_to_phpvms_folder.'/bootstrap/app.php';
$app->setPublicPath (__DIR__('/public'));
$app->setPublicUrlPath(env('APP_PUBLIC_URL', '/public'));
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);