class Recaller

Properties

protected string $recaller

The "recaller" / "remember me" cookie string.

Methods

__construct(string $recaller)

Create a new recaller instance.

string
id()

Get the user ID from the recaller.

string
token()

Get the "remember token" token from the recaller.

string
hash()

Get the password hash from the recaller.

bool
valid()

Determine if the recaller is valid.

bool
properString()

Determine if the recaller is a proper string.

bool
hasAllSegments()

Determine if the recaller has all segments.

array
segments()

Get the recaller's segments.

Details

at line 22
__construct(string $recaller)

Create a new recaller instance.

Parameters

string $recaller

at line 31
string id()

Get the user ID from the recaller.

Return Value

string

at line 39
string token()

Get the "remember token" token from the recaller.

Return Value

string

at line 47
string hash()

Get the password hash from the recaller.

Return Value

string

at line 55
bool valid()

Determine if the recaller is valid.

Return Value

bool

at line 63
protected bool properString()

Determine if the recaller is a proper string.

Return Value

bool

at line 71
protected bool hasAllSegments()

Determine if the recaller has all segments.

Return Value

bool

at line 81
array segments()

Get the recaller's segments.

Return Value

array