* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ declare(strict_types=1); namespace PrestaShopBundle\Controller\Admin\Configure\AdvancedParameters\AuthorizationServer; use PrestaShopBundle\Controller\Admin\FrameworkBundleAdminController; use PrestaShopBundle\Exception\NotImplementedException; use PrestaShopBundle\Security\Annotation\AdminSecurity; /** * Manages the "Configure > Advanced Parameters > Authorization Server > Api Access" page. * * @experimental */ class ApiAccessController extends FrameworkBundleAdminController { /** * @AdminSecurity("is_granted('create', request.get('_legacy_controller'))") */ public function createAction(): void { // TODO: Implement createAction() method in create PR. throw new NotImplementedException(); } }