diff --git a/src/CoreBundle/Form/Type/IllustrationType.php b/src/CoreBundle/Form/Type/IllustrationType.php new file mode 100644 index 0000000000..67cadb9b4e --- /dev/null +++ b/src/CoreBundle/Form/Type/IllustrationType.php @@ -0,0 +1,43 @@ +setDefaults( + [ + 'choices' => [ + 'Yes' => 'true', + 'No' => 'false', + ], + ] + );*/ + } + + /** + * {@inheritdoc} + */ + public function getParent() + { + return FileType::class; + } + + /** + * @return string + */ + public function getName() + { + return 'illustration'; + } +}