Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
TransactionEvents.php
Go to the documentation of this file.
1 <?php
7 
14 {
18  protected $_model;
19 
23  public function __construct(\Magento\Paypal\Model\Report\Settlement\Row $model)
24  {
25  $this->_model = $model;
26  }
27 
31  public function toOptionArray()
32  {
33  return $this->_model->getTransactionEvents();
34  }
35 }