/
home
/
vianto5
/
duettowers.mx
/
wp-content
/
plugins
/
wp-rocket
/
inc
/
Engine
/
HealthCheck
/
/home/vianto5/duettowers.mx/wp-content/plugins/wp-rocket/inc/Engine/HealthCheck
mkdir
upload
Name
Size
Mode
Actions
CacheDirSizeCheck.php
4061
0644
edit
dl
rm
HealthCheck.php
3731
0644
edit
dl
rm
ServiceProvider.php
1188
0644
edit
dl
rm
Edit:
/home/vianto5/duettowers.mx/wp-content/plugins/wp-rocket/inc/Engine/HealthCheck/ServiceProvider.php
(1188B)
<?php namespace WP_Rocket\Engine\HealthCheck; use WP_Rocket\Dependencies\League\Container\ServiceProvider\AbstractServiceProvider; /** * Service Provider for health check subscribers * * @since 3.6 */ 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 = [ 'health_check', 'cache_dir_size_check', ]; /** * Registers items with the container * * @return void */ public function register() { $this->getContainer()->share( 'health_check', 'WP_Rocket\Engine\HealthCheck\HealthCheck' ) ->addArgument( $this->getContainer()->get( 'options' ) ) ->addTag( 'admin_subscriber' ); $this->getContainer()->share( 'cache_dir_size_check', 'WP_Rocket\Engine\HealthCheck\CacheDirSizeCheck' ) ->addArgument( rocket_get_constant( 'WP_ROCKET_MINIFY_CACHE_PATH' ) ) ->addArgument( rocket_get_constant( 'WP_ROCKET_WEB_MAIN' ) ) ->addTag( 'common_subscriber' ); } }
Save
cmd:
run