Browse Source

Fluent interface for AbstractHandler::setFormatter()

BilgeXA 12 năm trước cách đây
mục cha
commit
bbf7f20b2a
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      src/Monolog/Handler/AbstractHandler.php

+ 2 - 0
src/Monolog/Handler/AbstractHandler.php

@@ -97,6 +97,8 @@ abstract class AbstractHandler implements HandlerInterface
     public function setFormatter(FormatterInterface $formatter)
     {
         $this->formatter = $formatter;
+        
+        return $this;
     }
 
     /**