gam6itko/jms-serializer-config-converter

View on GitHub
src/Converter/ConverterInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1);

namespace Gam6itko\JSCC\Converter;

/**
 * @author Alexander Strizhak <gam6itko@gmail.com>
 */
interface ConverterInterface
{
    /**
     * @param string $from Converts from Format
     * @param string $to   Converts to Format
     *
     * @return mixed
     */
    public function convert(\ReflectionClass $class, string $from, string $to);
}