Section ======= .. php:class:: Section Represents a Section in a Gantt chart. Groups Tasks and Milestones in the chart. .. php:method:: __construct(string $title) Create a Section :param string $title: Section title :returns: A new ``Section`` instance :rtype: Section .. php:method:: addItem(Milestone|Task ...$item) Add item(s) to the Section :param Milestone|Task $item: The item(s) :returns: A new ``Section`` instance with the item(s) added :rtype: Section .. php:method:: withComment(string $comment): self Set a comment for the Section :param string $comment: The comment :returns: A new ``Section`` instance :rtype: Section .. php:method:: withItem(Milestone|Task ...$item) Set Section item(s) :param Milestone|Task $item: The item(s) :returns: A new ``Section`` instance with the item(s) :rtype: Section