Doctrine_Record::clearMutator PHP Méthode

clearMutator() public méthode

clears the custom mutator for a field name
public clearMutator ( string $fieldName ) : void
$fieldName string
Résultat void
    public function clearMutator($fieldName)
    {
        $componentName = $this->_table->getComponentName();
        unset(self::$_customMutators[$componentName][$fieldName]);
    }