getConfig() protected method

Retrieve configuration
protected getConfig ( ) : array
return array
Example #1
0
 /**
  * {@inheritDoc}
  */
 protected function getConfig()
 {
     $config = parent::getConfig();
     if ($this->isManualCalculation() && $this->getStepValue() > 0) {
         $config['step'] = $this->getStepValue();
     }
     return $config;
 }