Todaymade\Daux\Format\HTML\ContentTypes\Markdown\TOC\Processor::setNull PHP Метод

setNull() защищенный Метод

Set the specified property to null on the object.
protected setNull ( Heading $object, string $property )
$object League\CommonMark\Block\Element\Heading The object to modify
$property string The property to nullify
    protected function setNull(Heading $object, $property)
    {
        $prop = new \ReflectionProperty(get_class($object), $property);
        $prop->setAccessible(true);
        $prop->setValue($object, null);
    }