Devise\Pages\Interpreter\Modifiers\RegisterDeviseTags::registerDeviseTag PHP Method

registerDeviseTag() protected method

Register a devise tag, and also replaces the data-devise html with the cid stuff
protected registerDeviseTag ( DeviseTag $tag, $html ) : string
$tag Devise\Pages\Interpreter\DeviseTag
return string
    protected function registerDeviseTag(DeviseTag $tag, $html)
    {
        $this->registrations[] = $tag;
        $newTag = $this->getNewDeviseTagString($tag);
        return str_replace($tag, $newTag, $html);
    }