Skip to content

Commit

Permalink
Chnages for Empty array sent
Browse files Browse the repository at this point in the history
  • Loading branch information
kedarkhaire committed Nov 19, 2024
1 parent 30afe1b commit f58749a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Api/Management/Entity/AppCredential.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ public function getApiProducts(): array
*
* Included API products in an app credential can not be changed by modifying this property's value.
*
* @param CredentialProductInterface ...$apiProducts
* @param CredentialProductInterface|array ...$apiProducts
*
* @internal
*/
public function setApiProducts(CredentialProductInterface ...$apiProducts): void
public function setApiProducts(CredentialProductInterface|array ...$apiProducts): void
{
$this->apiProducts = $apiProducts;
}
Expand Down

0 comments on commit f58749a

Please sign in to comment.