コード例 #1
0
ファイル: ActionsExtension.php プロジェクト: jfsimon/datagrid
 /**
  * {@inheritdoc}
  */
 public function configure(OptionsResolver $resolver)
 {
     $this->dataHandler->configure($resolver);
     $this->labelHandler->configure($resolver);
 }
コード例 #2
0
 public function testExceptionWhenNoActions()
 {
     $handler = new DataActionsHandler();
     $this->setExpectedException('Jfsimon\\Datagrid\\Exception\\ConfigurationException');
     $handler->handle(new Column(), null, array('actions' => null));
 }