SampleArrayAccess.php in Zircon Profile 8
File
vendor/phpunit/phpunit/tests/_files/SampleArrayAccess.php
View source
<?php
class SampleArrayAccess implements ArrayAccess {
private $container;
public function __construct() {
$this->container = array();
}
public function offsetSet($offset, $value) {
if (is_null($offset)) {
$this->container[] = $value;
}
else {
$this->container[$offset] = $value;
}
}
public function offsetExists($offset) {
return isset($this->container[$offset]);
}
public function offsetUnset($offset) {
unset($this->container[$offset]);
}
public function offsetGet($offset) {
return isset($this->container[$offset]) ? $this->container[$offset] : null;
}
}