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