OwlCyberSecurity - MANAGER
Edit File: ServiceProvider.php
<?php declare(strict_types=1); namespace WP_Rocket\Engine\Heartbeat; use WP_Rocket\Dependencies\League\Container\ServiceProvider\AbstractServiceProvider; /** * Service provider for heartbeat module */ class ServiceProvider extends AbstractServiceProvider { /** * Array of services provided by this service provider * * @var array */ protected $provides = [ 'heartbeat_subscriber', ]; /** * Check if the service provider provides a specific service. * * @param string $id The id of the service. * * @return bool */ public function provides( string $id ): bool { return in_array( $id, $this->provides, true ); } /** * Registers items with the container * * @return void */ public function register(): void { $this->getContainer()->addShared( 'heartbeat_subscriber', HeartbeatSubscriber::class ) ->addArgument( 'options' ); } }