瀏覽代碼

switch initialized state in example handler

Toni Uebernickel 14 年之前
父節點
當前提交
fda8d401a5
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      doc/extending.md

+ 2 - 0
doc/extending.md

@@ -54,6 +54,8 @@ class PDOHandler extends AbstractProcessingHandler
         $this->statement = $this->pdo->prepare(
         $this->statement = $this->pdo->prepare(
             'INSERT INTO monolog (channel, level, message, time) VALUES (:channel, :level, :message, :time)'
             'INSERT INTO monolog (channel, level, message, time) VALUES (:channel, :level, :message, :time)'
         );
         );
+
+        $this->initialized = true;
     }
     }
 }
 }
 ```
 ```