Exemple #1
0
 /**
  * @return $this
  */
 public function glyphicon()
 {
     $this->uiElement->glyphicon();
     return $this;
 }
Exemple #2
0
 public function testGlyphicon()
 {
     $tag = new Icon('foo', false);
     $tag->glyphicon();
     $this->assertEquals('<i class="glyphicon glyphicon-foo"></i>', $tag->getHTML());
 }