📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 15:44:27
📂
/ (Root)
/
home
/
apkbfjox
/
stargame.pk
/
wp-content
/
plugins
/
wp-rocket
/
inc
/
Engine
/
Admin
/
Beacon
📍 /home/apkbfjox/stargame.pk/wp-content/plugins/wp-rocket/inc/Engine/Admin/Beacon
🔄 Refresh
✏️
Editing: ServiceProvider.php
Writable
<?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', Beacon::class ) ->addArgument( $this->getContainer()->get( 'options' ) ) ->addArgument( $this->getContainer()->get( 'template_path' ) . '/settings' ) ->addArgument( $this->getContainer()->get( 'support_data' ) ) ->addTag( 'admin_subscriber' ); } }
💾 Save Changes
❌ Cancel