| 1 | <?php |
||
| 5 | class AttrTransformer implements AttrTransformerInterface |
||
| 6 | { |
||
| 7 | private $attrName; |
||
| 8 | |||
| 9 | private $valueTransformer; |
||
| 10 | |||
| 11 | public function __construct($attrName, TransformerInterface $valueTransformer = null) |
||
| 16 | |||
| 17 | public function transform($origin) |
||
| 25 | |||
| 26 | public function supports($attrName) |
||
| 30 | } |
||
| 31 |