Fill Callback
Work In Progress
The contents of this site (Output) are currently being constructed and will be available within the next days.
Please be patient and come over again in a few days.
Usage
use Authanram\Generators\Generator;
use Authanram\Generators\Input;
(new \Authanram\Generators\Generator())
->withFillCallback(fn (\Authanram\Generators\Input $input) => [
'second' => $input->get('second'),
'fourth' => $input->get('fourth'),
])
// ...
Arguments
Input $input
...
Calling
$input->str(...)
instead of$input->get(...)
will provide you with all the power ofIlluminate\Support\Stringable
to manipulate strings. (Read more)