freenet-router |
Subversion Repositories: |
Compare with Previous - Blame - Download
<?php
namespace Phem\Libraries\UI\Model;
use Phem\Core\Object;
/**
* @author Jakub PetrĹžĂlka <petrzilka@czweb.net>
*/
class ScopeType extends Object
{
const APPLICATION = 1;
const USER = 2;
const SESSION = 3;
const CONNECTION = 4;
}