| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class FactFinderBusinessFactory extends AbstractBusinessFactory |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @return \SprykerEco\Zed\FactFinder\Business\Tracker\TrackerInterface |
||
| 17 | */ |
||
| 18 | public function createTracker() |
||
| 19 | { |
||
| 20 | return new Tracker($this->getFactFinderSdkClient()); |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return \SprykerEco\Client\FactFinderSdk\FactFinderSdkClientInterface |
||
| 25 | */ |
||
| 26 | protected function getFactFinderSdkClient() |
||
| 29 | } |
||
| 30 | } |
||
| 31 |