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