コード例 #1
0
ファイル: Icon.php プロジェクト: myclabs/muih
 /**
  * @return $this
  */
 public function fa()
 {
     $this->uiElement->fontAwesome();
     return $this;
 }
コード例 #2
0
ファイル: IconTest.php プロジェクト: myclabs/muih
 public function testFontAwesome()
 {
     $tag = new Icon('foo', false);
     $tag->fontAwesome();
     $this->assertEquals('<i class="fa fa-foo"></i>', $tag->getHTML());
 }