diff --git a/lib/Api/IngestionClient.php b/lib/Api/IngestionClient.php index e6eaf04e..ec95cdc2 100644 --- a/lib/Api/IngestionClient.php +++ b/lib/Api/IngestionClient.php @@ -63,8 +63,11 @@ public function __construct(ApiWrapperInterface $apiWrapper, IngestionConfig $co * @param string $apiKey Algolia API Key * @param string $region Region */ - public static function create($appId = null, $apiKey = null, $region = null) - { + public static function create( + string $appId = null, + string $apiKey = null, + string $region = null + ){ $config = IngestionConfig::create($appId, $apiKey, $region); return static::createWithConfig($config);