1<?php
2
3namespace Elastica\Processor;
4
5\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);
6
7/**
8 * Elastica Attachment Processor.
9 *
10 * @author Federico Panini <fpanini@gmail.com>
11 *
12 * @see https://www.elastic.co/guide/en/elasticsearch/plugins/current/ingest-attachment.html
13 * @deprecated since version 7.1.0, use the AttachmentProcessor class instead.
14 */
15class Attachment extends AttachmentProcessor
16{
17}
18