예제 #1
0
 /**
  * {@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));
 }