diff --git a/CHANGELOG.md b/CHANGELOG.md index d602d46b..a3e2b07c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ * fix(`Mapper`): Fix typehint. * test: test array cast to object mapping * feat(`Context`): `with()` not accepts multiple argument. +* build: Deinternalize `ObjectCacheFactory` ## 1.0.0 diff --git a/src/ObjectCache/Implementation/ObjectCacheFactory.php b/src/ObjectCache/Implementation/ObjectCacheFactory.php index 5a38bfc5..600167b5 100644 --- a/src/ObjectCache/Implementation/ObjectCacheFactory.php +++ b/src/ObjectCache/Implementation/ObjectCacheFactory.php @@ -17,9 +17,6 @@ use Rekalogika\Mapper\ObjectCache\ObjectCacheFactoryInterface; use Rekalogika\Mapper\TypeResolver\TypeResolverInterface; -/** - * @internal - */ final class ObjectCacheFactory implements ObjectCacheFactoryInterface { public function __construct( diff --git a/src/ObjectCache/ObjectCacheFactoryInterface.php b/src/ObjectCache/ObjectCacheFactoryInterface.php index 722ba054..0dd4dbef 100644 --- a/src/ObjectCache/ObjectCacheFactoryInterface.php +++ b/src/ObjectCache/ObjectCacheFactoryInterface.php @@ -13,9 +13,6 @@ namespace Rekalogika\Mapper\ObjectCache; -/** - * @internal - */ interface ObjectCacheFactoryInterface { public function createObjectCache(): ObjectCache;