LdapTools\Utilities\TSPropertyArray::remove PHP Method

remove() public method

Remove a TSProperty by its property name (ie. CtxMinEncryptionLevel).
public remove ( string $propName )
$propName string
    public function remove($propName)
    {
        foreach (array_keys($this->tsProperty) as $property) {
            if (MBString::strtolower($propName) == MBString::strtolower($property)) {
                unset($this->tsProperty[$property]);
            }
        }
        return $this;
    }