Files
infinito/application/symfony/src/Entity/Source/PureSource.php
2019-01-05 23:52:37 +01:00

22 lines
395 B
PHP

<?php
namespace App\Entity\Source;
use Doctrine\ORM\Mapping as ORM;
/**
* This class represents a source with no additional attributes
* Never inhiere from this!
* Use instead AbstractSource!
*
* @author kevinfrantz
* @ORM\Entity
*/
class PureSource extends AbstractSource implements PureSourceInterface
{
public function __construct()
{
parent::__construct();
}
}