chamilo/chamilo-lms

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

Summary

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

namespace Chamilo\PluginBundle\MigrationMoodle\Interfaces;

/**
 * Interface TransformPropertyInterface.
 */
interface TransformPropertyInterface
{
    /**
     * @return mixed
     */
    public function transform(array $data);
}