%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/tjamichg/cursos.tjamich.gob.mx/plugin/migrationmoodle/src/Transformer/Property/
Upload File :
Create Path :
Current File : /home/tjamichg/cursos.tjamich.gob.mx/plugin/migrationmoodle/src/Transformer/Property/Subtract.php

<?php
/* For licensing terms, see /license.txt */

namespace Chamilo\PluginBundle\MigrationMoodle\Transformer\Property;

use Chamilo\PluginBundle\MigrationMoodle\Interfaces\TransformPropertyInterface;

/**
 * Class Subtract.
 *
 * Make a subtract from a minuend nd subtrahend.
 *
 * @package Chamilo\PluginBundle\MigrationMoodle\Transformer\Property
 */
class Subtract implements TransformPropertyInterface
{
    /**
     * {@inheritdoc}
     */
    public function transform(array $data)
    {
        list($minuend, $subtrahend) = array_values($data);

        return $minuend - $subtrahend;
    }
}

Zerion Mini Shell 1.0