for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Aist Console (http://mateuszsitek.com/projects/console)
*
* @copyright Copyright (c) 2017 DIGITAL WOLVES LTD (http://digitalwolves.ltd) All rights reserved.
* @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
*/
namespace Aist\Console\Helper\Logger;
use Interop\Container\ContainerInterface;
use Psr\Log\LoggerInterface;
class LoggerHelperFactory
{
public function __invoke(ContainerInterface $container)
return new LoggerHelper($container->get(LoggerInterface::class));
}