/home/smartbloks/public_html/new/wp-content/plugins/mailoptin/vendor/drewm/drip/src/Batch.php
<?php

namespace DrewM\Drip;

class Batch extends Dataset
{
    public function jsonSerialize()
    {
        return [
            'batches' => [
                [
                    $this->label => $this->data,
                ],
            ],
        ];
    }

}