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\SshKeyResponse>
*/
class SshKeysResponse extends \ArrayObject
{
* @param array<object> $sshkeys
public function __construct(array $sshkeys)
parent::__construct(
array_map(
static function ($sshkey) {
return new SshKeyResponse($sshkey);
},
$sshkeys
),
self::ARRAY_AS_PROPS
);
}