Skip to content

Commit

Permalink
Merge pull request #12 from Dhii/bug/11-missing-param-type
Browse files Browse the repository at this point in the history
  • Loading branch information
XedinUnknown authored Sep 15, 2020
2 parents ba05103 + 34c5209 commit 75537c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MaskingContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class MaskingContainer implements ContainerInterface
* @param bool[] $mask A mapping of keys to booleans, such that `true` exposes the mapped key
* and `false` hides the mapped key.
*/
public function __construct(PsrContainerInterface $inner, $defaultMask, array $mask)
public function __construct(PsrContainerInterface $inner, bool $defaultMask, array $mask)
{
$this->inner = $inner;
$this->defMask = $defaultMask;
Expand Down

0 comments on commit 75537c2

Please sign in to comment.