for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CommerceGuys\AuthNet\DataTypes;
class PaymentSchedule extends BaseDataType
{
protected $propertyMap = [
'interval',
'startDate',
'totalOccurrences',
'trialOccurrences',
];
public function addInterval(Interval $interval)
$this->properties['interval'] = $interval->toArray();
}