lithium\data\entity\Document::offsetUnset PHP Méthode

offsetUnset() public méthode

Allows document fields to be unset as array keys, i.e. unset($document['_id']).
public offsetUnset ( string $key ) : void
$key string The name of a field in an individual document.
Résultat void
    public function offsetUnset($key)
    {
        return $this->__unset($key);
    }