for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CloudyCity\TencentMarketingSDK\Kernel\Http\Parameters;
class DateRange extends TimeRange
{
/**
* Get the instance as an array.
*
* @return array
*/
protected function __toArray()
return [
'start_date' => $this->start->toDateString(),
'end_date' => $this->end->toDateString(),
];
}