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