| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | abstract class AbstractService |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var ContainerInterface The SDK service container. |
||
| 19 | */ |
||
| 20 | protected $container; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Constructs the service with the SDK service container. |
||
| 24 | * |
||
| 25 | * @param ContainerInterface $container The SDK service container. |
||
| 26 | */ |
||
| 27 | public function __construct(ContainerInterface $container) |
||
| 32 |