Completed
Push — dev2 ( c76456...a94057 )
by Gordon
16:24 queued 01:24
created

updateElasticsearchDocument()   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
3
class IdentityElasticaIndexingHelper extends Extension implements ElasticaIndexingHelperInterface {
4
	public function updateElasticsearchMapping(\Elastica\Type\Mapping $mapping) {
5
		return $mapping;
6
	}
7
8
	public function updateElasticsearchDocument(\Elastica\Document $document) {
9
		return $document;
10
	}
11
12
	public function updateElasticHTMLFields(array $htmlFields) {
13
		return $htmlFields;
14
	}
15
}
16