rcrowe\Hippy\Message::setBackgroundColor PHP 메소드

setBackgroundColor() 공개 메소드

public setBackgroundColor ( $color )
    public function setBackgroundColor($color)
    {
        // throw exception here if not a valid color
        $this->background_color = $color;
    }

Usage Example

예제 #1
0
 public function testSet()
 {
     $message = new Message(false, 'random');
     $this->assertEquals($message->getBackgroundColor(), 'random');
     $message = new Message(false, 'red');
     $message->setBackgroundColor('random');
     $this->assertEquals($message->getBackgroundColor(), 'random');
 }