getContainer()->get( 'options' ); $this->getContainer()->share( 'db_optimization_subscriber', 'WP_Rocket\Subscriber\Admin\Database\Optimization_Subscriber' ) ->withArgument( $this->getContainer()->get( 'db_optimization' ) ) ->withArgument( $options ); $this->getContainer()->add( 'expired_cache_purge', 'WP_Rocket\Cache\Expired_Cache_Purge' ) ->withArgument( rocket_get_constant( 'WP_ROCKET_CACHE_PATH' ) ); $this->getContainer()->share( 'expired_cache_purge_subscriber', 'WP_Rocket\Subscriber\Cache\Expired_Cache_Purge_Subscriber' ) ->withArgument( $options ) ->withArgument( $this->getContainer()->get( 'expired_cache_purge' ) ); $this->getContainer()->share( 'webp_subscriber', 'WP_Rocket\Subscriber\Media\Webp_Subscriber' ) ->withArgument( $options ) ->withArgument( $this->getContainer()->get( 'options_api' ) ) ->withArgument( $this->getContainer()->get( 'cdn_subscriber' ) ) ->withArgument( $this->getContainer()->get( 'beacon' ) ); $this->getContainer()->share( 'detect_missing_tags_subscriber', 'WP_Rocket\Subscriber\Tools\Detect_Missing_Tags_Subscriber' ); } }