Lines Matching refs:handlers
124 protected $handlers; variable in Monolog\\Logger
154 …* @param HandlerInterface[] $handlers Optional stack of handlers, the first one in the array is …
158 …public function __construct(string $name, array $handlers = [], array $processors = [], ?DateTimeZ… argument
161 $this->setHandlers($handlers);
187 array_unshift($this->handlers, $handler);
199 if (!$this->handlers) {
203 return array_shift($this->handlers);
211 * @param HandlerInterface[] $handlers
213 public function setHandlers(array $handlers): self argument
215 $this->handlers = [];
216 foreach (array_reverse($handlers) as $handler) {
228 return $this->handlers;
296 foreach ($this->handlers as $handler) {
353 foreach ($this->handlers as $handler) {
370 foreach ($this->handlers as $handler) {
456 foreach ($this->handlers as $handler) {