Example #1
0
 public function __construct($attrs = array())
 {
     $this->choices = $attrs['choices'];
     unset($attrs['choices']);
     parent::__construct($attrs);
 }
Example #2
0
 public function testWidget()
 {
     $widget = new widget\Widget();
     $this->setExpectedException('\\photon\\form\\widget\\Exception');
     $widget->render('foo', 'bar');
 }