Skip to content

Commit 541616a

Browse files
committed
Fixed namespaces
1 parent 894524c commit 541616a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/CategoryLookup.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@
88
use Kiboko\Component\Bucket\RejectionResultBucket;
99
use Kiboko\Contract\Mapping\CompiledMapperInterface;
1010
use Kiboko\Contract\Pipeline\TransformerInterface;
11-
use Psr\SimpleCache\CacheInterface;
1211

1312
final readonly class CategoryLookup implements TransformerInterface
1413
{
1514
public function __construct(
1615
private \Psr\Log\LoggerInterface $logger,
1716
private \Kiboko\Magento\V2_1\Client|\Kiboko\Magento\V2_2\Client|\Kiboko\Magento\V2_3\Client|\Kiboko\Magento\V2_4\Client $client,
18-
private \Symfony\Contracts\Cache\CacheInterface $cache,
17+
private \Psr\SimpleCache\CacheInterface $cache,
1918
private string $cacheKey,
2019
private CompiledMapperInterface $mapper,
2120
private string $mappingField,

src/Lookup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
public function __construct(
1616
private \Psr\Log\LoggerInterface $logger,
1717
private \Kiboko\Magento\V2_1\Client|\Kiboko\Magento\V2_2\Client|\Kiboko\Magento\V2_3\Client|\Kiboko\Magento\V2_4\Client $client,
18-
private \Symfony\Contracts\Cache\CacheInterface $cache,
18+
private \Psr\SimpleCache\CacheInterface $cache,
1919
private string $cacheKey,
2020
private CompiledMapperInterface $mapper,
2121
private string $mappingField,

0 commit comments

Comments
 (0)