public function CustomArrayObject::offsetUnset in Plug 7
File
- lib/
Symfony/ validator/ Symfony/ Component/ Validator/ Tests/ Fixtures/ CustomArrayObject.php, line 46
Class
- CustomArrayObject
- This class is a hand written simplified version of PHP native `ArrayObject` class, to show that it behaves differently than the PHP native implementation.
Namespace
Symfony\Component\Validator\Tests\FixturesCode
public function offsetUnset($offset) {
unset($this->array[$offset]);
}