Is it possible to disable upload processors? For example:
I only require the simple processor so do not require the resumable entity to be provided however this causes the following.
[Symfony\Component\Debug\Exception\ContextErrorException]
Notice: Undefined index: resumable_entity_class in C:\proj\vendor\srio\rest-upload-bundle\SRIO\Res
tUploadBundle\DependencyInjection\SRIORestUploadExtension.php line 30
By setting this to null in config.yml prevents this (resumable_entity_class: ~). But still this has a dependency on on the orm even though it's not being used.
Is it possible to disable upload processors? For example:
I only require the simple processor so do not require the resumable entity to be provided however this causes the following.
By setting this to null in
config.yml
prevents this (resumable_entity_class: ~
). But still this has a dependency on on the orm even though it's not being used.