Repository URL to install this package:
|
Version:
2.3.7 ▾
|
<?php
namespace DrewM\Drip;
class Batch extends Dataset
{
public function jsonSerialize() {
return [
'batches' => [
[
$this->label => $this->data
]
]
];
}
}