We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2902a61 commit 13fbde4Copy full SHA for 13fbde4
.gitignore
@@ -1,5 +1,6 @@
1
._*
2
.DS_Store
3
.sass-cache
4
+.idea/
5
composer.lock
6
vendor
src/AbstractConfigProps.php
@@ -16,11 +16,11 @@ abstract class AbstractConfigProps implements ConfigPropsInterface
16
/**
17
* Hydrate the properties/object with expected data, and handle unexpected data
18
*
19
- * @param string $key
+ * @param string|bool $key
20
* @param mixed $value
21
* @return void
22
*/
23
- abstract protected function propsHydration(string $key, mixed $value): void;
+ abstract protected function propsHydration(string|bool $key, mixed $value): void;
24
25
26
* Set type safe config props
0 commit comments