Skip to content

Commit

Permalink
editorMapping is null by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mabar committed Nov 3, 2019
1 parent ca52715 commit a5732b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bridges/Nette/TracyExtension.php
Expand Up @@ -50,7 +50,7 @@ public function getConfigSchema(): Nette\Schema\Schema
'scream' => Expect::bool()->dynamic(),
'bar' => Expect::listOf('string|Nette\DI\Definitions\Statement'),
'blueScreen' => Expect::listOf('callable'),
'editorMapping' => Expect::arrayOf('string')->dynamic(),
'editorMapping' => Expect::arrayOf('string')->dynamic()->default(null),
'netteMailer' => Expect::bool(true),
]);
}
Expand Down

0 comments on commit a5732b5

Please sign in to comment.