/**
  * {@inheritdoc}
  */
 public function getOperations($plugin_type_id)
 {
     $operations = parent::getOperations($plugin_type_id);
     $operations['list']['url'] = new Url('payment.payment_type.collection');
     return $operations;
 }
 /**
  * {@inheritdoc}
  */
 public function getOperations($plugin_type_id)
 {
     $operations = parent::getOperations($plugin_type_id);
     $operations['configure'] = ['title' => $this->t('Configure'), 'url' => new Url('currency.amount_formatting')];
     return $operations;
 }
 /**
  * {@inheritdoc}
  */
 public function getOperations($plugin_type_id)
 {
     $operations = parent::getOperations($plugin_type_id);
     $operations['configure'] = ['title' => $this->t('Configure'), 'url' => new Url('currency.exchange_rate_provider.config')];
     return $operations;
 }
 /**
  * @covers ::getOperations
  */
 public function testGetOperations()
 {
     $this->assertOperationsLinks($this->sut->getOperations($this->randomMachineName()));
 }