%PDF- %PDF-
Direktori : /var/www/pn/wp-content/plugins/wp-rocket/inc/Engine/Admin/Beacon/ |
Current File : /var/www/pn/wp-content/plugins/wp-rocket/inc/Engine/Admin/Beacon/ServiceProvider.php |
<?php namespace WP_Rocket\Engine\Admin\Beacon; use WP_Rocket\Dependencies\League\Container\ServiceProvider\AbstractServiceProvider; /** * Service Provider for Beacon * * @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 = [ 'beacon', ]; /** * Registers items with the container * * @return void */ public function register() { $this->getContainer()->share( 'beacon', 'WP_Rocket\Engine\Admin\Beacon\Beacon' ) ->addArgument( $this->getContainer()->get( 'options' ) ) ->addArgument( $this->getContainer()->get( 'template_path' ) . '/settings' ) ->addArgument( $this->getContainer()->get( 'support_data' ) ) ->addTag( 'admin_subscriber' ); } }