子弹填充列表和选项

I want to output a list with php word.

My list must be bullet filled so I used :

$predefinedMultilevel = array('color' => '000000', 'listType' => \PhpOffice\PhpWord\Style\ListItem::TYPE_BULLET_FILLED);

But I need to have left space and hanging to 0, so normally it's this code :

        $phpWord->addNumberingStyle(
        'multilevel',
        array(
            'type'   => 'multilevel',
            'levels' => array(
                array('format' => 'decimal', 'text' => '%1.', 'left' => 0, 'hanging' => 0, 'tabPos' => 360),
            ),
            'listType' => \PhpOffice\PhpWord\Style\ListItem::TYPE_BULLET_FILLED
        )
    );

How do I combine the two to have a bullet list and 0 to left / hanging ?

Thank for your help !