| Current Path : /opt/nginxhttpd_/src/DataTransformer/ |
| Current File : //opt/nginxhttpd_/src/DataTransformer/DataTransformerInterface.php |
<?php
namespace App\DataTransformer;
/**
* Class that implement the DataTransformerInterface can be passed to the HttpdParser to Transform/Enrich the data parsed
*/
interface DataTransformerInterface
{
/**
* @param array $d Input data
* @param string $k Key
* @return array[] passed the newdata followed by the newkey (can change too)
*/
public function transform(array $d, $k = null) : array;
}