* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShopBundle\Bridge\AdminController; /** * Interface for horizontally migrated controllers */ interface FrameworkBridgeControllerInterface { /** * @return LegacyControllerBridgeInterface */ public function getLegacyControllerBridge(): LegacyControllerBridgeInterface; /** * @return ControllerConfiguration */ public function getControllerConfiguration(): ControllerConfiguration; }