class PhpVersions implements ArrayAccess, IteratorAggregate (View source)

Methods

static 
getLatest()

No description

static float
getFirst()

No description

bool
offsetExists(TKey $offset)

No description

mixed
offsetGet(TKey $offset)

Offset to retrieve

void
offsetSet(TKey $offset, TValue $value)

Offset to set

void
offsetUnset(TKey $offset)

Offset to unset

getIterator()

No description

Details

static getLatest()

No description

static float getFirst()

No description

Return Value

float

bool offsetExists(TKey $offset)

No description

Parameters

TKey $offset

An offset to check for.

Return Value

bool

true on success or false on failure.

The return value will be casted to boolean if non-boolean was returned.

mixed offsetGet(TKey $offset)

Offset to retrieve

Parameters

TKey $offset

The offset to retrieve.

Return Value

mixed

Can return all value types.

void offsetSet(TKey $offset, TValue $value)

Offset to set

Parameters

TKey $offset

The offset to assign the value to.

TValue $value

The value to set.

Return Value

void

void offsetUnset(TKey $offset)

Offset to unset

Parameters

TKey $offset

The offset to unset.

Return Value

void

Traversable getIterator()

No description

Return Value

Traversable

An instance of an object implementing Iterator or Traversable