1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 
<?php

namespace SAREhub\Commons\Logger;

use Monolog\Handler\HandlerInterface;
use Monolog\Logger;

class BasicLoggerFactory implements LoggerFactory
{

    private $handlers = [];
    private $processors = [];

    /**
     * @return BasicLoggerFactory
     */
    public static function newInstance()
    {
        return new self();
    }

    /**
     * @param HandlerInterface $handler
     * @return $this
     */
    public function addHandler(HandlerInterface $handler)
    {
        $this->handlers[] = $handler;
        return $this;
    }

    /**
     * @param callable $processor
     * @return $this
     */
    public function addProcessor(callable $processor)
    {
        $this->processors[] = $processor;
        return $this;
    }

    public function create($name)
    {
        return new Logger($name, $this->getHandlers(), $this->getProcessors());
    }

    public function getHandlers()
    {
        return $this->handlers;
    }

    public function getProcessors()
    {
        return $this->processors;
    }
}