Skip to content

Commit 60b6fa1

Browse files
chore: adds missing full-stops
Co-authored-by: Felix Arntz <[email protected]>
1 parent 2cf2ea9 commit 60b6fa1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Common/AbstractEnum.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use ReflectionClass;
1010

1111
/**
12-
* Abstract base class for enum-like behavior in PHP 7.4
12+
* Abstract base class for enum-like behavior in PHP 7.4.
1313
*
1414
* This class provides enum-like functionality for PHP versions that don't support native enums.
1515
* Child classes should define uppercase snake_case constants for enum values.
@@ -35,22 +35,22 @@
3535
abstract class AbstractEnum
3636
{
3737
/**
38-
* @var string The value of the enum instance
38+
* @var string The value of the enum instance.
3939
*/
4040
private string $value;
4141

4242
/**
43-
* @var string The name of the enum constant
43+
* @var string The name of the enum constant.
4444
*/
4545
private string $name;
4646

4747
/**
48-
* @var array<string, array<string, string>> Cache for reflection data
48+
* @var array<string, array<string, string>> Cache for reflection data.
4949
*/
5050
private static array $cache = [];
5151

5252
/**
53-
* @var array<string, array<string, self>> Cache for enum instances
53+
* @var array<string, array<string, self>> Cache for enum instances.
5454
*/
5555
private static array $instances = [];
5656

0 commit comments

Comments
 (0)