8889841cwp-content/plugins/mailpoet/vendor-prefixed/monolog/monolog/src/Monolog/Handler/AbstractHandler.php000064400000001704150524554670035534 0ustar00home/clixcotz/tcchp.clix.co.tzsetLevel($level); $this->bubble = $bubble; } public function isHandling(array $record) : bool { return $record['level'] >= $this->level; } public function setLevel($level) : self { $this->level = Logger::toMonologLevel($level); return $this; } public function getLevel() : int { return $this->level; } public function setBubble(bool $bubble) : self { $this->bubble = $bubble; return $this; } public function getBubble() : bool { return $this->bubble; } public function reset() { } }