for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Elastica\Processor;
trigger_deprecation('ruflin/elastica', '7.1.0', 'The "%s" class is deprecated, use "%s" instead. It will be removed in 8.0.', Attachment::class, AttachmentProcessor::class);
/**
* Elastica Attachment Processor.
*
* @author Federico Panini <[email protected]>
* @see https://www.elastic.co/guide/en/elasticsearch/plugins/current/ingest-attachment.html
* @deprecated since version 7.1.0, use the AttachmentProcessor class instead.
*/
class Attachment extends AttachmentProcessor
{
}