Scalr\Tests\TestCase::getSessionId PHP 메소드

getSessionId() 보호된 정적인 메소드

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