12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
-
- class Raven_Context
- {
-
-
- public $tags;
-
-
- public $extra;
-
-
- public $user;
-
- public function __construct()
- {
- $this->clear();
- }
-
-
-
- public function clear()
- {
- $this->tags = array();
- $this->extra = array();
- $this->user = null;
- }
- }
|