mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2026-02-06 05:04:07 +00:00
Optimized for SPA
This commit is contained in:
21
application/symfony/src/Entity/Source/PureSource.php
Normal file
21
application/symfony/src/Entity/Source/PureSource.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user