Completed
Pull Request — master (#1893)
by
unknown
03:38
created

Attachment::setIgnoreMissing()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace 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 <[email protected]>
11
 *
12
 * @see https://www.elastic.co/guide/en/elasticsearch/plugins/current/ingest-attachment.html
13
 *
14
 * @deprecated since version 7.1.0, use the AttachmentProcessor class instead.
15
 */
16
class Attachment extends AttachmentProcessor
17
{
18
}
19