Skip to content

Commit 622a7e0

Browse files
committed
CS fixed
1 parent a7f6296 commit 622a7e0

File tree

14 files changed

+20
-20
lines changed

14 files changed

+20
-20
lines changed

src/Bundle/JoseFramework/DependencyInjection/Source/KeyManagement/JWKSetSource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class JWKSetSource implements Source
2424
{
2525
/**
26-
* @var null|JWKSetSourceInterface[]
26+
* @var JWKSetSourceInterface[]|null
2727
*/
2828
private $jwkset_sources = null;
2929

src/Bundle/JoseFramework/DependencyInjection/Source/KeyManagement/JWKSource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class JWKSource implements Source
2424
{
2525
/**
26-
* @var null|JWKSourceInterface[]
26+
* @var JWKSourceInterface[]|null
2727
*/
2828
private $jwkSources = null;
2929

src/Component/Checker/Tests/Stub/OtherToken.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
class OtherToken implements JWT
1919
{
2020
/**
21-
* @var null|string
21+
* @var string|null
2222
*/
2323
private $payload;
2424

src/Component/Checker/Tests/Stub/Token.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
class Token implements JWT
1919
{
2020
/**
21-
* @var null|string
21+
* @var string|null
2222
*/
2323
private $payload;
2424

src/Component/Core/Tests/AlgorithmManagerFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function iCannotGetAnAlgorithmThatDoesNotExist()
6767
}
6868

6969
/**
70-
* @var null|AlgorithmManagerFactory
70+
* @var AlgorithmManagerFactory|null
7171
*/
7272
private $algorithmManagerFactory;
7373

src/Component/Encryption/JWEBuilder.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class JWEBuilder
3636
private $jsonConverter;
3737

3838
/**
39-
* @var null|string
39+
* @var string|null
4040
*/
4141
private $payload;
4242

@@ -76,17 +76,17 @@ class JWEBuilder
7676
private $sharedHeader = [];
7777

7878
/**
79-
* @var null|CompressionMethod
79+
* @var CompressionMethod|null
8080
*/
8181
private $compressionMethod = null;
8282

8383
/**
84-
* @var null|ContentEncryptionAlgorithm
84+
* @var ContentEncryptionAlgorithm|null
8585
*/
8686
private $contentEncryptionAlgorithm = null;
8787

8888
/**
89-
* @var null|string
89+
* @var string|null
9090
*/
9191
private $keyManagementMode = null;
9292

src/Component/Encryption/Recipient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class Recipient
2424
private $header = [];
2525

2626
/**
27-
* @var null|string
27+
* @var string|null
2828
*/
2929
private $encryptedKey = null;
3030

src/Component/Encryption/Tests/EncryptionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ protected function getJWELoaderFactory(): JWELoaderFactory
137137
}
138138

139139
/**
140-
* @var null|Serializer\JWESerializerManagerFactory
140+
* @var Serializer\JWESerializerManagerFactory|null
141141
*/
142142
private $jwsSerializerManagerFactory = null;
143143

@@ -154,7 +154,7 @@ protected function getJWESerializerManagerFactory(): Serializer\JWESerializerMan
154154
}
155155

156156
/**
157-
* @var null|Serializer\JWESerializerManager
157+
* @var Serializer\JWESerializerManager|null
158158
*/
159159
private $jwsSerializerManager = null;
160160

src/Component/Encryption/Tests/RFC7520/NestingTokenBuilderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ private function getCompressionMethodManagerFactory(): CompressionMethodManagerF
211211
}
212212

213213
/**
214-
* @var null|JweSerializer\JWESerializerManagerFactory
214+
* @var JweSerializer\JWESerializerManagerFactory|null
215215
*/
216216
private $jwsSerializerManagerFactory = null;
217217

src/Component/Encryption/Tests/RFC7520/NestingTokenUsingNestedTokenLoaderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ private function getJWEDecrypterFactory(): JWEDecrypterFactory
256256
}
257257

258258
/**
259-
* @var null|JweSerializer\JWESerializerManagerFactory
259+
* @var JweSerializer\JWESerializerManagerFactory|null
260260
*/
261261
private $jwsSerializerManagerFactory = null;
262262

0 commit comments

Comments
 (0)