From 004102ee72b6939ea206117604c8e91ea30b960f Mon Sep 17 00:00:00 2001 From: Sam Lee Date: Mon, 24 Feb 2025 00:43:14 +0900 Subject: [PATCH] Coordinate class comments --- src/Enums/GoodCodeType.php | 7 +++++++ src/GoodCode.php | 2 -- src/Location.php | 2 -- src/ReceiptCode.php | 2 -- src/ValueObjects/SetGood.php | 2 -- 5 files changed, 7 insertions(+), 8 deletions(-) diff --git a/src/Enums/GoodCodeType.php b/src/Enums/GoodCodeType.php index 5c896e9..4ad5a8e 100644 --- a/src/Enums/GoodCodeType.php +++ b/src/Enums/GoodCodeType.php @@ -2,6 +2,13 @@ namespace Cable8mm\GoodCode\Enums; +/** + * This class represents a good code type. + * + * @author Samgu Lee + * + * @since 2025-02-04 + */ enum GoodCodeType { case NORMAL; diff --git a/src/GoodCode.php b/src/GoodCode.php index f63f4ee..d5920c5 100644 --- a/src/GoodCode.php +++ b/src/GoodCode.php @@ -7,8 +7,6 @@ use Cable8mm\GoodCode\ValueObjects\SetGood; /** - * Class GoodCode - * * This class makes a set code, option code and so on. * * @author Samgu Lee diff --git a/src/Location.php b/src/Location.php index d724636..0547626 100644 --- a/src/Location.php +++ b/src/Location.php @@ -5,8 +5,6 @@ use Stringable; /** - * Class Location - * * This class represents a warehouse location identified by warehouse, rack, and shelf. The location code is generated from these properties. * * @author Samgu Lee diff --git a/src/ReceiptCode.php b/src/ReceiptCode.php index 58c6e67..e4a905d 100644 --- a/src/ReceiptCode.php +++ b/src/ReceiptCode.php @@ -6,8 +6,6 @@ use Stringable; /** - * Class ReceiptCode - * * This class represents a receipt code identified by code, prefix, ymd and number. The receipt code is generated from these properties. * * @author Samgu Lee diff --git a/src/ValueObjects/SetGood.php b/src/ValueObjects/SetGood.php index 0f33fb5..70639fa 100644 --- a/src/ValueObjects/SetGood.php +++ b/src/ValueObjects/SetGood.php @@ -7,8 +7,6 @@ use Stringable; /** - * Class SetGood - * * This class is a value object for SetGood object. * * @author Samgu Lee