mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 02:06:23 +02: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
|
|
{
|
|
}
|