-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a0b91c6
commit 15f2db5
Showing
1 changed file
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
<?php | ||
|
||
// config for HPWebdeveloper/LaravelPayPocket | ||
|
||
/** | ||
* The 'log_reference_generator' should be a numeric array with three elements: | ||
* - The first element should be the fully qualified name of a class that contains static methods. | ||
* This includes the namespace of the class. | ||
* - The second element should be the name of a static method available in the specified class. | ||
* - The third element should be an array of optional parameters to pass to the static method. | ||
* For example, the default generator is configured as follows: | ||
* [\Illuminate\Support\Str::class, 'random', [12]], which uses the 'random' static method | ||
* from the \Illuminate\Support\Str class with 12 as a parameter. | ||
*/ | ||
return [ | ||
'log_reference_length' => 12, | ||
'log_reference_prefix' => null, | ||
/** | ||
* The log reference generator should be a numeric array with 3 indexes | ||
* First item should be a static class | ||
* Second item sould be method availble in the static class | ||
* third item should be an array of optional parameters to pass to the method | ||
* The default generator looks like this: [\Illuminate\Support\Str::class, 'random', [12]] | ||
*/ | ||
'log_reference_generator' => null, | ||
]; |