HummingBirdAnimeClient/src/Aviat/Ion/Transformer/TransformerInterface.php

14 lines
203 B
PHP
Raw Normal View History

2015-09-18 22:55:40 -04:00
<?php
namespace Aviat\Ion\Transformer;
interface TransformerInterface {
/**
* Mutate the data structure
*
* @param array|object $item
* @return mixed
*/
public function transform($item);
}