📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 14:23:05
📂
/ (Root)
/
home
/
apkbfjox
/
stargame.pk
/
wp-content
/
plugins
/
wp-rocket
/
inc
/
Engine
/
Admin
/
Database
📍 /home/apkbfjox/stargame.pk/wp-content/plugins/wp-rocket/inc/Engine/Admin/Database
🔄 Refresh
✏️
Editing: ServiceProvider.php
Writable
<?php namespace WP_Rocket\Engine\Admin\Database; use WP_Rocket\Dependencies\League\Container\ServiceProvider\AbstractServiceProvider; /** * Service Provider for database optimization * * @since 3.3 */ class ServiceProvider 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 = [ 'db_optimization_process', 'db_optimization', 'db_optimization_subscriber', ]; /** * Registers the option array in the container * * @since 3.3 * * @return void */ public function register() { $this->getContainer()->add( 'db_optimization_process', OptimizationProcess::class ); $this->getContainer()->add( 'db_optimization', Optimization::class ) ->addArgument( $this->getContainer()->get( 'db_optimization_process' ) ); $this->getContainer()->share( 'db_optimization_subscriber', Subscriber::class ) ->addArgument( $this->getContainer()->get( 'db_optimization' ) ) ->addArgument( $this->getContainer()->get( 'options' ) ) ->addTag( 'common_subscriber' ); } }
💾 Save Changes
❌ Cancel