for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AcquiaCloudApi\Response;
/**
* @template-extends \ArrayObject<int, \AcquiaCloudApi\Response\IdentityProviderResponse>
*/
class IdentityProvidersResponse extends \ArrayObject
{
* @param array<object> $idps
public function __construct(array $idps)
parent::__construct(
array_map(
static function ($idp) {
return new IdentityProviderResponse($idp);
},
$idps
),
self::ARRAY_AS_PROPS
);
}