rcrowe\Hippy\Message::setNotification PHP Method

setNotification() public method

public setNotification ( )
    public function setNotification()
    {
        $this->notification = true;
    }

Usage Example

コード例 #1
0
ファイル: MessageTest.php プロジェクト: rcrowe/hippy
 public function testSetNotification()
 {
     $message = new Message(true);
     $this->assertTrue($message->getNotification());
     $message = new Message();
     $message->setNotification();
     $this->assertTrue($message->getNotification());
 }