<?php declare(strict_types=1); namespace App\Core\Servientrega\Entities; class Envios { public array $CargueMasivoExternoDTO; public function __construct() { $this->CargueMasivoExternoDTO = []; } public function add(CargueMasivoExternoDTO $CargueMasivoExternoDTO) { $this->CargueMasivoExternoDTO[] = $CargueMasivoExternoDTO; } }