Lines Matching refs:handler
39 foreach ($handlers as $handler) {
40 if (!$handler instanceof HandlerInterface) {
54 foreach ($this->handlers as $handler) {
55 if ($handler->isHandling($record)) {
73 foreach ($this->handlers as $handler) {
74 $handler->handle($record);
94 foreach ($this->handlers as $handler) {
95 $handler->handleBatch($records);
103 foreach ($this->handlers as $handler) {
104 if ($handler instanceof ResettableInterface) {
105 $handler->reset();
114 foreach ($this->handlers as $handler) {
115 $handler->close();
124 foreach ($this->handlers as $handler) {
125 if ($handler instanceof FormattableHandlerInterface) {
126 $handler->setFormatter($formatter);