getContainer() ->inflector( ActivationInterface::class ) ->invokeMethod( 'activate', [] ); } /** * Registers the option array in the container. */ public function register() { $filesystem = rocket_direct_filesystem(); $this->getContainer()->add( 'advanced_cache', AdvancedCache::class ) ->addArgument( $this->getContainer()->get( 'template_path' ) . '/cache/' ) ->addArgument( $filesystem ); $this->getContainer()->add( 'capabilities_manager', Manager::class ); $this->getContainer()->add( 'wp_cache', WPCache::class ) ->addArgument( $filesystem ); $this->getContainer()->add( 'action_scheduler_check', ActionSchedulerCheck::class ); } }