We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b42f68 commit 216f789Copy full SHA for 216f789
src/Console/DumpDatabaseCommand.php
@@ -14,6 +14,7 @@ class DumpDatabaseCommand extends Command
14
public function handle()
15
{
16
$definition = config('masked-dump.' . $this->option('definition'));
17
+ $definition = is_callable($definition) ? call_user_func($definition) : $definition;
18
$definition->load();
19
20
$this->info('Starting Database dump');
0 commit comments