Skip to content

Commit

Permalink
Modify comment in config file
Browse files Browse the repository at this point in the history
  • Loading branch information
HPWebdeveloper committed Jan 11, 2024
1 parent a0b91c6 commit 15f2db5
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions config/pay-pocket.php
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,
];

0 comments on commit 15f2db5

Please sign in to comment.