14 lines
203 B
PHP
14 lines
203 B
PHP
|
<?php
|
||
|
|
||
|
namespace Aviat\Ion\Transformer;
|
||
|
|
||
|
interface TransformerInterface {
|
||
|
|
||
|
/**
|
||
|
* Mutate the data structure
|
||
|
*
|
||
|
* @param array|object $item
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function transform($item);
|
||
|
}
|