You are here

public function FeedsExBase::setEncoder in Feeds extensible parsers 7

Sets the encoder.

Parameters

FeedsExEncoderInterface $encoder: The encoder.

Return value

$this The parser object.

File

src/FeedsExBase.inc, line 764
Contains FeedsExBase.

Class

FeedsExBase
The Feeds extensible parser.

Code

public function setEncoder(FeedsExEncoderInterface $encoder) {
  $this->encoder = $encoder;
  return $this;
}