. * */ /** * Dependency injector for TubePress */ interface org_tubepress_ioc_IocService { const CACHE = 'cacheService'; const CAT_PRINTER = 'categoryPrinter'; const FEED_INSP = 'feedInspectionService'; const FEED_RET = 'feedRetrievalService'; const FORM_HNDLER = 'formHandler'; const GALLERY = 'gallery'; const MESSAGE = 'messageService'; const OPTIONS_MGR = 'optionsManager'; const PAGINATION = 'paginationService'; const QUERY_STR = 'queryStringService'; const REFERENCE = 'optionsReference'; const SHORTCODE = 'shortcodeService'; const STORAGE = 'storageManager'; const THUMB = 'thumbnailService'; const URL_BUILDER = 'ulrBuilderService'; const VALIDATION = 'validationService'; const VID_FACT = 'videoFactory'; const WIDGET_GALL = 'widgetGallery'; const W_PRINTER = 'widgetPrinter'; public function get($className); public function safeGet($firstChoice, $safeChoice); }