From e2e462354cc28a1d3b2aba72fcf064cd0d31620b Mon Sep 17 00:00:00 2001 From: Pierre Grimaud Date: Sun, 26 Apr 2020 00:02:33 +0200 Subject: [PATCH] Fix typos --- src/BaseComponent.php | 4 ++-- src/Config/BaseConfig.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/BaseComponent.php b/src/BaseComponent.php index c725de93..b2a4840a 100644 --- a/src/BaseComponent.php +++ b/src/BaseComponent.php @@ -226,8 +226,8 @@ protected function run(): void } /** - * Class of created config. It's useful if you want to implment getters for - * parameters in your config. It's prefferable to accessing configuration + * Class of created config. It's useful if you want to implement getters for + * parameters in your config. It's preferable to accessing configuration * keys as arrays. */ protected function getConfigClass(): string diff --git a/src/Config/BaseConfig.php b/src/Config/BaseConfig.php index 4b351638..7ad76743 100644 --- a/src/Config/BaseConfig.php +++ b/src/Config/BaseConfig.php @@ -12,7 +12,7 @@ /** * Offers basic abstraction over the JSON config. You can extend it and add your own getters for custom parameters. - * It's then easier to use them then to remember under which key they are in the paramteres array. + * It's then easier to use them then to remember under which key they are in the parameters array. */ class BaseConfig implements ConfigInterface {