chamilo/chamilo-lms

View on GitHub
public/plugin/migrationmoodle/src/Interfaces/TransformerInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/* For licensing terms, see /license.txt */

namespace Chamilo\PluginBundle\MigrationMoodle\Interfaces;

/**
 * Interface TransformerInterface.
 */
interface TransformerInterface
{
    /**
     * @throws \Exception
     *
     * @return array
     */
    public function transform(array $sourceData);
}