for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the overtrue/wechat.
*
* (c) overtrue <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace EasyWeChat\Kernel\Providers;
use EasyWeChat\Kernel\Log\LogManager;
use Pimple\Container;
use Pimple\ServiceProviderInterface;
/**
* Class LoggingServiceProvider.
* @author overtrue <[email protected]>
class LogServiceProvider implements ServiceProviderInterface
{
* Registers services on the given container.
* This method should only be used to configure services and parameters.
* It should not get services.
* @param Container $pimple A container instance
public function register(Container $pimple)
!isset($pimple['log']) && $pimple['log'] = function ($app) {
$config = $app['config']->get('log');
if (!empty($config)) {
$app->rebind('config', $app['config']->merge($config));
}
return new LogManager($app);
};
!isset($pimple['logger']) && $pimple['logger'] = $pimple['log'];