public function SampleArrayAccess::offsetGet in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpunit/phpunit/tests/_files/SampleArrayAccess.php \SampleArrayAccess::offsetGet()
File
- vendor/
phpunit/ phpunit/ tests/ _files/ SampleArrayAccess.php, line 32
Class
- SampleArrayAccess
- Sample class that implements ArrayAccess copied from http://www.php.net/manual/en/class.arrayaccess.php with some minor changes This class required for PHPUnit_Framework_Constraint_ArrayHasKey testing
Code
public function offsetGet($offset) {
return isset($this->container[$offset]) ? $this->container[$offset] : null;
}