예제 #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());
 }