Skip to content

Commit

Permalink
Improve docs for protected method
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Nov 15, 2024
1 parent b4a9212 commit ecd4712
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/MinFraud/ServiceClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,11 @@ protected function maybeThrowInvalidInputException(string $msg): void
}

/**
* @param array<string, mixed> $array
* @param list<string> $types
* @ignore
*
* @param array<string, mixed> $array the parent array
* @param string $key the key to remove
* @param list<string> $types the expected types
*/
protected function remove(array &$array, string $key, array $types = ['string']): mixed
{
Expand Down

0 comments on commit ecd4712

Please sign in to comment.