| Current Path : /opt/nginxhttpd_/src/DataTransformer/ |
| Current File : //opt/nginxhttpd_/src/DataTransformer/PostDataTransformerInterface.php |
<?php
namespace App\DataTransformer;
/**
* Class that can be used after the first parsing. Will works on the array will all the data and return all the data
* at once.
* Different than the DataTransformerInterface that will works on 1 row of the data
*/
interface PostDataTransformerInterface
{
/**
* @param array $d Input data
* @return array[]
*/
public function transform(array $d) : array;
}