From d28f43129475eedbf05b8e82b5088e3c3ae02584 Mon Sep 17 00:00:00 2001 From: Hamed Panjeh Date: Thu, 27 Jun 2024 13:54:34 -0300 Subject: [PATCH] Modify comments --- config/pay-pocket.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/pay-pocket.php b/config/pay-pocket.php index 2b6a8a8..a6a8124 100644 --- a/config/pay-pocket.php +++ b/config/pay-pocket.php @@ -12,12 +12,12 @@ | This configuration allows you to customize the generation of log reference strings | within the LaravelPayPocket package. | - | - [array] log_reference_params: The parameters to pass to the log reference generator. - | - [string] log_reference_prefix: The prefix for the generated reference string. - | - [class-string] log_reference_generator_class: The fully qualified name of the class containing static methods for generation. - | - [string] log_reference_generator_method: The name of the static method available in the generator class. + | - [array] log_reference_params: An array of parameters to pass to the log_reference_generator_method. + | - [string] log_reference_prefix: Prefix for the generated reference string. + | - [class-string] log_reference_generator_class: Fully qualified name of the class containing static methods for generation. + | - [string] log_reference_generator_method: Name of the static method available in the generator class. | - | This is how it works by default in the code: + | By default, the following generator is set up: | Illuminate\Support\Str::random(12) | */