You are here

public function FeedType::getProcessor in Feeds 8.3

Returns the configured processor for this feed type.

Return value

\Drupal\feeds\Plugin\Type\Processor\ProcessorInterface The processor associated with this feed type.

Overrides FeedTypeInterface::getProcessor

File

src/Entity/FeedType.php, line 435

Class

FeedType
Defines the Feeds feed type entity.

Namespace

Drupal\feeds\Entity

Code

public function getProcessor() {
  return $this
    ->getPlugin('processor');
}