mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 19:05:18 +01:00
13 lines
197 B
PHP
13 lines
197 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Domain\ActionManagement\Create;
|
||
|
|
||
|
use App\Domain\ActionManagement\AbstractAction;
|
||
|
|
||
|
/**
|
||
|
* @author kevinfrantz
|
||
|
*/
|
||
|
abstract class AbstractCreateAction extends AbstractAction
|
||
|
{
|
||
|
}
|