Orangehill\Iseed\Iseed::addNewLines PHP Метод

addNewLines() приватный Метод

Adds new lines to the passed content variable reference.
private addNewLines ( string &$content, integer $numberOfLines = 1 )
$content string
$numberOfLines integer
    private function addNewLines(&$content, $numberOfLines = 1)
    {
        while ($numberOfLines > 0) {
            $content .= $this->newLineCharacter;
            $numberOfLines--;
        }
    }