PHPWord长文本新行选项卡

Assume I have this dynamic long text in table and it has two tab at the beginning :

$table->addCell(2000,$cellTelegram)
      ->addText("\t\tABCDEFASDASDASDASDASDASDAS (auto line break) DASDASDASDASDASDASDsASDASD");

The result

What I want to achieve

The problem is, the text after auto line break is not tabbed like the first line.

How can I make the second line after auto line break have the same tab as the first line?