ForkCMS\Bundle\InstallerBundle\Controller\InstallerController::getInstallationData PHP Method

getInstallationData() protected method

protected getInstallationData ( Request $request ) : mixed
$request Symfony\Component\HttpFoundation\Request
return mixed
    protected function getInstallationData(Request $request)
    {
        if (!$request->getSession()->has('installation_data')) {
            $request->getSession()->set('installation_data', new InstallationData());
        }
        return $request->getSession()->get('installation_data');
    }