LdapTools\Ldif\LdifStringBuilderTrait::addComment PHP Method

addComment() public method

Add a comment to be associated with this entry.
public addComment ( $comments )
$comments
    public function addComment(...$comments)
    {
        foreach ($comments as $comment) {
            $this->comments[] = $comment;
        }
        return $this;
    }