Section Class ============= .. php:class:: Section Represents a Section in a User Journey diagram .. php:method:: __construct(string $name) Creates a new User Journey section :param string $name: The section name :returns: A new instance of ``Section`` :rtype: Section .. php:method:: addTask(Task ...$task) Add task(s) :param Task ...$task: The task(s) :returns: A new instance of ``Section`` with the task(s) added :rtype: Section .. php:method:: withComment(string $comment) Add a comment :param string $comment: The comment :returns: A new instance of ``Section`` with the comment :rtype: Section .. php:method:: withTask(Task ...$task) Set task(s) :param Task ...$task: The task(s) :returns: A new instance of ``Section`` with the task(s) :rtype: Section