I believe those are all equivalent options, across PHP versions 5, 7 and 8. It has been optimized in the PHP core since the dark ages, but still the native call should be the fastest one.
* @param string $name Method name. * @param array $arguments Method argument. * @return mixed */ public static function __callStatic($name, $arguments) { return call ...