%PDF- %PDF-
| Direktori : /home/tjamichg/cursos.tjamich.gob.mx/plugin/migrationmoodle/src/Traits/ |
| Current File : /home/tjamichg/cursos.tjamich.gob.mx/plugin/migrationmoodle/src/Traits/MapTrait.php |
<?php
/* For licensing terms, see /license.txt */
namespace Chamilo\PluginBundle\MigrationMoodle\Traits\MapTrait;
trait MapTrait
{
/**
* @var string
*/
protected $calledClass;
/**
* @return string
*/
protected function getTaskName()
{
$name = substr(strrchr($this->calledClass, '\\'), 1);
return api_camel_case_to_underscore($name);
}
}