for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WShafer\PSR11MonoLog\Service;
use WShafer\PSR11MonoLog\ConfigInterface;
class ProcessorManager extends AbstractServiceManager
{
public function getServiceConfig($id): ConfigInterface
return $this->config->getProcessorConfig($id);
}
public function has($id)
if (parent::has($id)) {
return true;
return $this->config->hasProcessorConfig($id);