| Total Complexity | 4 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class RetryStrategyFactory |
||
| 13 | { |
||
| 14 | /** @var string */ |
||
| 15 | private $transportName; |
||
| 16 | |||
| 17 | 3 | public function __construct(string $transportName) |
|
| 18 | { |
||
| 19 | 3 | $this->transportName = $transportName; |
|
| 20 | 3 | } |
|
| 21 | |||
| 22 | 3 | public function __invoke(ContainerInterface $container): RetryStrategyInterface |
|
| 39 | ); |
||
| 40 | } |
||
| 42 |