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.', Trim::class, TrimProcessor::class); 6 7/** 8 * Elastica Trim Processor. 9 * 10 * @author Federico Panini <fpanini@gmail.com> 11 * 12 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/trim-processor.html 13 * @deprecated since version 7.1.0, use the TrimProcessor class instead. 14 */ 15class Trim extends TrimProcessor 16{ 17} 18