📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 21:15:14
📂
/ (Root)
/
home
/
apkbfjox
/
7lgbet.pro
/
wp-content
/
plugins
/
wp-rocket
/
inc
/
classes
/
ServiceProvider
📍 /home/apkbfjox/7lgbet.pro/wp-content/plugins/wp-rocket/inc/classes/ServiceProvider
🔄 Refresh
✏️
Editing: class-common-subscribers.php
Writable
<?php namespace WP_Rocket\ServiceProvider; use WP_Rocket\Dependencies\League\Container\ServiceProvider\AbstractServiceProvider; /** * Service provider for WP Rocket features common for admin and front * * @since 3.3 */ class Common_Subscribers extends AbstractServiceProvider { /** * The provides array is a way to let the container * know that a service is provided by this service * provider. Every service that is registered via * this service provider must have an alias added * to this array or it will be ignored. * * @var array */ protected $provides = [ 'detect_missing_tags_subscriber', ]; /** * Registers items with the container * * @return void */ public function register() { $this->getContainer()->share( 'detect_missing_tags_subscriber', 'WP_Rocket\Subscriber\Tools\Detect_Missing_Tags_Subscriber' ) ->addTag( 'common_subscriber' ); } }
💾 Save Changes
❌ Cancel