/home/techb158/ileadtechnology.com/vendor/aws/aws-sdk-php/src/DynamoDb
Edit: /home/techb158/ileadtechnology.com/vendor/aws/aws-sdk-php/src/DynamoDb/SetValue.php (960B)
values = $values;
}
/**
* Get the values formatted for PHP and JSON.
*
* @return array
*/
public function toArray()
{
return $this->values;
}
/**
* @return int
*/
#[\ReturnTypeWillChange]
public function count()
{
return count($this->values);
}
#[\ReturnTypeWillChange]
public function getIterator()
{
return new \ArrayIterator($this->values);
}
#[\ReturnTypeWillChange]
public function jsonSerialize()
{
return $this->toArray();
}
}