for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Jarobe\TaskRunnerBundle\Hydrator;
use Jarobe\TaskRunnerBundle\TaskType\TaskTypeInterface;
class Reflector
{
/**
* @param TaskTypeInterface $taskType
* @return string
*/
public function getNameForClass($taskType)
return $taskType::getName();
}