Skip to content

Commit 7eb0b3f

Browse files
Update src/OpenTok/Util/Validators.php
Co-authored-by: Copilot <[email protected]>
1 parent fda7074 commit 7eb0b3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OpenTok/Util/Validators.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public static function validateForceMuteAllOptions(array $options): void
7878
if (!isset($options[$optionName])) {
7979
continue;
8080
}
81-
if (getType($options[$optionName]) === $optionType) {
81+
if (gettype($options[$optionName]) === $optionType) {
8282
continue;
8383
}
8484
throw new InvalidArgumentException('Invalid type given in options for: ' . $options[$optionName]);

0 commit comments

Comments
 (0)