Current Path : /home/church/michaelblakemenswear.com/wp-content/plugins/mailpoet/lib/API/ |
Current File : /home/church/michaelblakemenswear.com/wp-content/plugins/mailpoet/lib/API/API.php |
<?php namespace MailPoet\API; if (!defined('ABSPATH')) exit; use MailPoet\DI\ContainerWrapper; use MailPoetVendor\Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException; class API { /** * @param string $version * @return \MailPoet\API\MP\v1\API * @throws \Exception */ public static function MP($version) { $apiClass = sprintf('%s\MP\%s\API', __NAMESPACE__, $version); try { return ContainerWrapper::getInstance()->get($apiClass); } catch (ServiceNotFoundException $e) { throw new \Exception(__('Invalid API version.', 'mailpoet')); } } }