Scalr\Tests\TestCase::getSessionId PHP Method

getSessionId() protected static method

This number is unique per each test execution.
protected static getSessionId ( ) : string
return string Returns unique session id.
    protected static function getSessionId()
    {
        static $s = null;
        if (!isset($s)) {
            $s = substr(uniqid(), 0, 6);
        }
        return $s;
    }