From 39ad1ce55282f912b9865fbb8d5a1c617dabd8d4 Mon Sep 17 00:00:00 2001 From: ADmad Date: Sat, 29 Aug 2020 01:16:28 +0530 Subject: [PATCH] Fix typo --- src/Listener/Traits/DeprecatedConfigurationKeyTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Listener/Traits/DeprecatedConfigurationKeyTrait.php b/src/Listener/Traits/DeprecatedConfigurationKeyTrait.php index a6fb59aa..81e78aac 100644 --- a/src/Listener/Traits/DeprecatedConfigurationKeyTrait.php +++ b/src/Listener/Traits/DeprecatedConfigurationKeyTrait.php @@ -12,7 +12,7 @@ trait DeprecatedConfigurationKeyTrait * @param string $newKey Name of key that should be used instead of the deprecated key * @return void **/ - protected function deprecatedScaffoldKeyNotice(string $deprecatedKey, strin $newKey): void + protected function deprecatedScaffoldKeyNotice(string $deprecatedKey, string $newKey): void { $template = 'The configuration key %s has been deprecated. Use %s instead.'; $message = sprintf($template, $deprecatedKey, $newKey);