for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace VasilDakov\Shipping\Response;
use VasilDakov\Shipping\Collection\ArrayCollection;
class GetOfficesResponse
{
public ArrayCollection $offices;
public function __construct(array $records = [])
$this->offices = new ArrayCollection($records);
}