Skip to content

Commit 15f2db5

Browse files
Modify comment in config file
1 parent a0b91c6 commit 15f2db5

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

config/pay-pocket.php

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
<?php
22

33
// config for HPWebdeveloper/LaravelPayPocket
4+
5+
/**
6+
* The 'log_reference_generator' should be a numeric array with three elements:
7+
* - The first element should be the fully qualified name of a class that contains static methods.
8+
* This includes the namespace of the class.
9+
* - The second element should be the name of a static method available in the specified class.
10+
* - The third element should be an array of optional parameters to pass to the static method.
11+
* For example, the default generator is configured as follows:
12+
* [\Illuminate\Support\Str::class, 'random', [12]], which uses the 'random' static method
13+
* from the \Illuminate\Support\Str class with 12 as a parameter.
14+
*/
415
return [
516
'log_reference_length' => 12,
617
'log_reference_prefix' => null,
7-
/**
8-
* The log reference generator should be a numeric array with 3 indexes
9-
* First item should be a static class
10-
* Second item sould be method availble in the static class
11-
* third item should be an array of optional parameters to pass to the method
12-
* The default generator looks like this: [\Illuminate\Support\Str::class, 'random', [12]]
13-
*/
1418
'log_reference_generator' => null,
1519
];

0 commit comments

Comments
 (0)