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

Append::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 5
Ratio 100 %

Importance

Changes 0
Metric Value
dl 5
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
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.', Append::class, AppendProcessor::class);
6
7
/**
8
 * Elastica Append Processor.
9
 *
10
 * @author Federico Panini <[email protected]>
11
 *
12
 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/append-processor.html
13
 *
14
 * @deprecated since version 7.1.0, use the AppendProcessor class instead.
15
 */
16
class Append extends AppendProcessor
17
{
18
}
19