Add minutes to PHP Datetime to calculate start/end of event
You have to create a new DateTime instance for that or you will be editing your original reference to your start date DateTime object. Try something like this:
$endTime = clone $startTime;
$endTime->add(new DateInterval('PT75M'));