コード例 #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;
 }