getContainer() ->inflector( DeactivationInterface::class ) ->invokeMethod( 'deactivate', [] ); } /** * 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 ); } }