예제 #1
0
파일: ButtonTest.php 프로젝트: myclabs/muih
 public function testLarge()
 {
     $tag = new Button('foo', Button::TYPE_INFO);
     $tag->large();
     $this->assertEquals('<button class="btn btn-info btn-lg" type="button">foo</button>', $tag->getHTML());
 }
예제 #2
0
파일: Button.php 프로젝트: myclabs/muih
 /**
  * @return $this
  */
 public function large()
 {
     $this->uiElement->large();
     return $this;
 }