You are here

public function SampleArrayAccess::offsetSet in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/_files/SampleArrayAccess.php \SampleArrayAccess::offsetSet()

File

vendor/phpunit/phpunit/tests/_files/SampleArrayAccess.php, line 16

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 offsetSet($offset, $value) {
  if (is_null($offset)) {
    $this->container[] = $value;
  }
  else {
    $this->container[$offset] = $value;
  }
}