Whilee Class ============ .. php:class:: Whilee Represents a `while` loop Implements :php:interface:`ItemInterface` .. php:method:: __construct(string $condition) Create a new Whilee :param string $condition: The loop condition :returns: A new ``Whilee`` instance :rtype: Whilee .. php:method:: addItem(ItemInterface ...$item) Add items to the Whilee section :param string ItemInterface ...$item: The item(s) :returns: A new instance of ``Whilee`` with the item(s) added :rtype: Whilee .. php:method:: withComment(string $comment) Set a comment for the Whilee :param string $comment: The comment :returns: A new instance of ``Whilee`` with the comment :rtype: Whilee .. php:method:: withItem(ItemInterface ...$item) Set the Whilee section items :param string ItemInterface ...$item: The item(s) :returns: A new instance of ``Whilee`` with the item(s) :rtype: Whilee