1
0
Fork 0
Lightning-Tracker/src/Pages/IAction.php

11 lines
112 B
PHP

<?php
declare(strict_types = 1);
namespace Pages;
interface IAction{
public function execute(): void;
}
?>