ServiceProvider.php
1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?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',
'action_scheduler_check',
];
/**
* Registers items with the container
*
* @return void
*/
public function register() {
$this->getContainer()->share( 'health_check', HealthCheck::class )
->addArgument( $this->getContainer()->get( 'options' ) )
->addTag( 'admin_subscriber' );
$this->getContainer()->share( 'action_scheduler_check', ActionSchedulerCheck::class )
->addTag( 'common_subscriber' );
}
}