Completed
Push — dev2 ( ea7092...761872 )
by Gordon
14:53
created

updateElasticHTMLFields()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 3
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
namespace SilverStripe\Elastica;
3
4
class IdentityElasticaIndexingHelper extends Extension implements ElasticaIndexingHelperInterface {
5
	public function updateElasticsearchMapping(\Elastica\Type\Mapping $mapping) {
6
		return $mapping;
7
	}
8
9
	public function updateElasticsearchDocument(\Elastica\Document $document) {
10
		return $document;
11
	}
12
13
	public function updateElasticHTMLFields(array $htmlFields) {
14
		return $htmlFields;
15
	}
16
}
17