示例#1
0
 /** @test */
 public function it_is_a_correct_object()
 {
     $field = new File('test', 'Test');
     $this->assertSame('file', $field->getOption('type'));
     $this->assertSame('administr/form::text', $field->getView());
     $this->assertInstanceOf(AbstractType::class, $field);
 }
示例#2
0
 public function __construct($name, $label, $options = null)
 {
     parent::__construct($name, $label, $options);
     $this->setView('administr/form::image');
 }