Total Complexity | 3 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class PayoneToUtilEncodingServiceBridge implements PayoneToUtilEncodingServiceInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var \Spryker\Service\UtilEncoding\UtilEncodingServiceInterface |
||
16 | */ |
||
17 | protected UtilEncodingServiceInterface $utilEncodingService; |
||
18 | |||
19 | /** |
||
20 | * @param \Spryker\Service\UtilEncoding\UtilEncodingServiceInterface $utilEncodingService |
||
21 | */ |
||
22 | public function __construct($utilEncodingService) |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @param string $jsonValue |
||
29 | * @param bool $assoc Deprecated: `false` is deprecated, always use `true` for array return. |
||
30 | * @param int|null $depth |
||
31 | * @param int|null $options |
||
32 | * |
||
33 | * @return object|array<mixed>|null |
||
34 | */ |
||
35 | public function decodeJson(string $jsonValue, bool $assoc = false, ?int $depth = null, ?int $options = null) |
||
45 |