コード例 #1
0
ファイル: _ide_helper.php プロジェクト: qarlson/infr
 /**
  * Renders the table
  *
  * @return string 
  * @static 
  */
 public static function render()
 {
     return \Bootstrapper\Table::render();
 }
コード例 #2
0
ファイル: PanelSpec.php プロジェクト: bootstrapper-php/core
 function it_should_throw_when_the_table_object_throws(Table $table)
 {
     $table->render()->willThrow('ErrorException');
     $this->withTable($table)->shouldThrow('ErrorException')->during('render');
 }