Skip to content

Commit 53d53bb

Browse files
committed
Set constant visibility in tests to private where possible.
1 parent c34f39e commit 53d53bb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Tests/TokenGenerator/UriSafeTokenGeneratorTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*/
2020
class UriSafeTokenGeneratorTest extends TestCase
2121
{
22-
const ENTROPY = 1000;
22+
private const ENTROPY = 1000;
2323

2424
/**
2525
* A non alpha-numeric byte string.

Tests/TokenStorage/NativeSessionTokenStorageTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*/
2323
class NativeSessionTokenStorageTest extends TestCase
2424
{
25-
const SESSION_NAMESPACE = 'foobar';
25+
private const SESSION_NAMESPACE = 'foobar';
2626

2727
/**
2828
* @var NativeSessionTokenStorage

Tests/TokenStorage/SessionTokenStorageTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222
class SessionTokenStorageTest extends TestCase
2323
{
24-
const SESSION_NAMESPACE = 'foobar';
24+
private const SESSION_NAMESPACE = 'foobar';
2525

2626
/**
2727
* @var Session

0 commit comments

Comments
 (0)