mageekguy\atoum\report\fields\runner\event\santa::getSnow PHP 메소드

getSnow() 보호된 메소드

protected getSnow ( )
    protected function getSnow()
    {
        $string = '';
        for ($i = 0; $i < 10; $i++) {
            if (rand(0, 42) < rand(40, 42)) {
                $string .= ' ';
            } else {
                $string .= $this->snowColorizer->colorize(self::snowflake);
            }
        }
        return $string;
    }