Skip to content

Commit ff35834

Browse files
🐛 Bux fix return type
1 parent 9b26f72 commit ff35834

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Utils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public static function is_cli_running(): bool
2828
* @param mixed $default Default value for the flag. Default: NULL.
2929
* @return mixed
3030
*/
31-
public static function get_flag_value( array $assoc_args, string $flag, mixed $default = null ) : mixed
31+
public static function get_flag_value( array $assoc_args, string $flag, mixed $default = null )
3232
{
3333
return isset( $assoc_args[ $flag ] ) ? $assoc_args[ $flag ] : $default;
3434
}

0 commit comments

Comments
 (0)