Skip to content

Commit 13fbde4

Browse files
committed
chore: add .idea to gitignore file
1 parent 2902a61 commit 13fbde4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
._*
22
.DS_Store
33
.sass-cache
4+
.idea/
45
composer.lock
56
vendor

src/AbstractConfigProps.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ abstract class AbstractConfigProps implements ConfigPropsInterface
1616
/**
1717
* Hydrate the properties/object with expected data, and handle unexpected data
1818
*
19-
* @param string $key
19+
* @param string|bool $key
2020
* @param mixed $value
2121
* @return void
2222
*/
23-
abstract protected function propsHydration(string $key, mixed $value): void;
23+
abstract protected function propsHydration(string|bool $key, mixed $value): void;
2424

2525
/**
2626
* Set type safe config props

0 commit comments

Comments
 (0)