Skip to content

Commit 22f3b9c

Browse files
authored
Merge pull request #165 from patchlevel/mark-stack-hydrator-experimental
mark stack hydrator experimental
2 parents d1865b7 + 19d6107 commit 22f3b9c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+43
-0
lines changed

src/CoreExtension.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
use Patchlevel\Hydrator\Guesser\BuiltInGuesser;
88
use Patchlevel\Hydrator\Middleware\TransformMiddleware;
99

10+
/** @experimental */
1011
final class CoreExtension implements Extension
1112
{
1213
public function configure(StackHydratorBuilder $builder): void

src/Extension.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
namespace Patchlevel\Hydrator;
66

7+
/** @experimental */
78
interface Extension
89
{
910
public function configure(StackHydratorBuilder $builder): void;

src/Extension/Cryptography/Attribute/DataSubjectId.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
use Attribute;
88

9+
/** @experimental */
910
#[Attribute(Attribute::TARGET_PROPERTY)]
1011
final class DataSubjectId
1112
{

src/Extension/Cryptography/Attribute/SensitiveData.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
use Attribute;
88
use InvalidArgumentException;
99

10+
/** @experimental */
1011
#[Attribute(Attribute::TARGET_PROPERTY)]
1112
final class SensitiveData
1213
{

src/Extension/Cryptography/BaseCryptographer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
use function is_array;
2121

2222
/**
23+
* @experimental
2324
* @phpstan-type EncryptedDataV1 array{
2425
* __enc: 'v1',
2526
* data: non-empty-string,

src/Extension/Cryptography/Cipher/Cipher.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
namespace Patchlevel\Hydrator\Extension\Cryptography\Cipher;
66

7+
/** @experimental */
78
interface Cipher
89
{
910
/**

src/Extension/Cryptography/Cipher/CipherKey.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
namespace Patchlevel\Hydrator\Extension\Cryptography\Cipher;
66

7+
/** @experimental */
78
final class CipherKey
89
{
910
/**

src/Extension/Cryptography/Cipher/CipherKeyFactory.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
namespace Patchlevel\Hydrator\Extension\Cryptography\Cipher;
66

7+
/** @experimental */
78
interface CipherKeyFactory
89
{
910
/** @throws CreateCipherKeyFailed */

src/Extension/Cryptography/Cipher/CreateCipherKeyFailed.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
use Patchlevel\Hydrator\HydratorException;
88
use RuntimeException;
99

10+
/** @experimental */
1011
final class CreateCipherKeyFailed extends RuntimeException implements HydratorException
1112
{
1213
public function __construct()

src/Extension/Cryptography/Cipher/DecryptionFailed.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
use Patchlevel\Hydrator\HydratorException;
88
use RuntimeException;
99

10+
/** @experimental */
1011
final class DecryptionFailed extends RuntimeException implements HydratorException
1112
{
1213
public function __construct()

0 commit comments

Comments
 (0)