* @copyright Since 2014 PrestaShow.pl * @license https://prestashow.pl/license */ declare(strict_types=1); namespace Prestashow\PShowSSO\Link\Controller\Admin; use Prestashow\PShowSSO\Controller\Admin\ConfigurationController as ConfigurationControllerCore; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; class ConfigurationController extends ConfigurationControllerCore { public function configurationAction(Request $request): Response { return parent::configurationAction($request); } }