コード例 #1
0
ファイル: _ide_helper.php プロジェクト: qarlson/infr
 /**
  * Creates a normal dropdown button
  *
  * @param string $label The label
  * @return $this 
  * @static 
  */
 public static function normal($label = '')
 {
     return \Bootstrapper\DropdownButton::normal($label);
 }
コード例 #2
0
 public function testWrongAttributes()
 {
     $this->setExpectedException('InvalidArgumentException');
     $dropdown = DropdownButton::normal('foo', array(), 'bar');
 }