# simple-urls/149/libs/Raven/Context.php

Lasso Lite (Simple URLs), version 149. 37 lines.

- Page: https://pluginprobe.com/plugins/simple-urls/149/code/libs/Raven/Context.php
- Raw: https://pluginprobe.com/plugins/simple-urls/149/raw/libs/Raven/Context.php
- Modified: 2022-08-02T03:33:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/simple-urls/149/code/libs/Raven/Context.php#L10-L20`.

```php
<?php
/**
 * Storage for additional client context.
 *
 * @package raven
 */
class Raven_Context
{
    /**
     * @var array
     */
    public $tags;
    /**
     * @var array
     */
    public $extra;
    /**
     * @var array|null
     */
    public $user;

    public function __construct()
    {
        $this->clear();
    }

    /**
     * Clean up existing context.
     */
    public function clear()
    {
        $this->tags = array();
        $this->extra = array();
        $this->user = null;
    }
}

```
