name = $name; $this->field = $field; $this->method = $method; } /** * {@inheritdoc} */ public function getType() { return BucketInterface::TYPE_DYNAMIC; } /** * {@inheritdoc} */ public function getName() { return $this->name; } /** * {@inheritdoc} * @codeCoverageIgnore */ public function getField() { return $this->field; } /** * Get method * * @return string * @codeCoverageIgnore */ public function getMethod() { return $this->method; } /** * {@inheritdoc} * @codeCoverageIgnore */ public function getMetrics() { return []; } }