I'm receiving the following error:
Deprecated: urlencode(): Passing null to parameter #1 ($string) of type string is deprecated in /path to airmoi_FileMaker/src/FileMaker.php on line 839
It is easily fixed by updating line 839 in FileMaker.php to:
$restParams[] = urlencode($option) . ($value === true || $value == null ? '' : '=' . urlencode($value));
This adds a $value==null check.