Преглед изворни кода

Make AsMonologProcessor compatible with PHP 7.2

Jordi Boggiano пре 3 година
родитељ
комит
508df120fa
1 измењених фајлова са 14 додато и 4 уклоњено
  1. 14 4
      src/Monolog/Attribute/AsMonologProcessor.php

+ 14 - 4
src/Monolog/Attribute/AsMonologProcessor.php

@@ -22,15 +22,25 @@ namespace Monolog\Attribute;
 #[\Attribute(\Attribute::TARGET_CLASS | \Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)]
 class AsMonologProcessor
 {
+    /** @var string|null */
+    public $channel = null;
+    /** @var string|null */
+    public $handler = null;
+    /** @var string|null */
+    public $method = null;
+    
     /**
      * @param string|null $channel  The logging channel the processor should be pushed to.
      * @param string|null $handler  The handler the processor should be pushed to.
      * @param string|null $method   The method that processes the records (if the attribute is used at the class level).
      */
     public function __construct(
-        public ?string $channel = null,
-        public ?string $handler = null,
-        public ?string $method = null,
+        ?string $channel = null,
+        ?string $handler = null,
+        ?string $method = null
     ) {
+        $this->channel = $channel;
+        $this->handler = $handler;
+        $this->method = $method;
     }
-} 
+}