get( $service ); } /** * Check if a particular service has been registered in the service container. * * @param string $service Service ID to retrieve. * @return bool */ public static function has( $service ) { return self::get_container()->has( $service ); } /** * Get an instance of the plugin. * * @return Plugin Plugin object instance. */ public static function get_plugin() { if ( null === self::$plugin ) { self::$plugin = AmpWpPluginFactory::create(); } return self::$plugin; } /** * Get an instance of the service container. * * @return ServiceContainer Service container object instance. */ public static function get_container() { if ( null === self::$container ) { self::$container = self::get_plugin()->get_container(); } return self::$container; } /** * Get an instance of the dependency injector. * * @return Injector Dependency injector object instance. */ public static function get_injector() { if ( null === self::$injector ) { self::$injector = self::get_container()->get( 'injector' ); } return self::$injector; } }