Change Value to Reference (256)
Inverse of Change Reference to Value (252)
Old Code
<?php
$customer = new Customer($customerData);
New Code
<?php
$customer = $customerRepository->get($customerData->id);
Inverse of Change Reference to Value (252)
<?php
$customer = new Customer($customerData);
<?php
$customer = $customerRepository->get($customerData->id);