mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2026-01-11 09:36:55 +00:00
13 lines
219 B
PHP
13 lines
219 B
PHP
<?php
|
|
|
|
namespace App\Entity\Source\Primitive;
|
|
|
|
use App\Entity\Source\AbstractSource;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
abstract class AbstractPrimitiveSource extends AbstractSource implements PrimitiveSourceInterface
|
|
{
|
|
}
|