container = $container; } /** * Deactivation hook. * * @since 0.1.0 * * @return void */ public function __invoke(): void { $this->remove_advanced_cache(); } /** * Remove the generated advanced-cache.php drop-in. * * @since 0.1.0 * * @return void */ private function remove_advanced_cache(): void { $this->container->get( Advanced_Cache::class )->remove(); } }