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