You are here

public function ProdCheckProcessor::isConfigurable in Production check & Production monitor 8

Returns whether or not this processor is configurable.

Return value

bool

Overrides ProdCheckProcessorConfigInterface::isConfigurable

File

src/Entity/ProdCheckProcessor.php, line 121

Class

ProdCheckProcessor
Defines the configured prod check processor entity.

Namespace

Drupal\prod_check\Entity

Code

public function isConfigurable() {
  return $this
    ->getPlugin() instanceof ConfigurableInterface;
}