provides, true ); } /** * Executes this method when the service provider is registered * * @return void */ public function boot(): void { $this->getContainer() ->inflector( ActivationInterface::class ) ->invokeMethod( 'activate', [] ); } /** * Registers the option array in the container. */ public function register(): void { $filesystem = rocket_direct_filesystem(); $this->getContainer()->add( 'advanced_cache', AdvancedCache::class ) ->addArguments( [ new StringArgument( $this->getContainer()->get( 'template_path' ) . '/cache/' ), $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 ); } }