Files
vito/app/SiteFeatures/Action.php
Saeed Vaziry 131b828807 Plugins base (#613)
* wip

* wip

* cleanup

* notification channels

* phpstan

* services

* remove server types

* refactoring

* refactoring
2025-06-14 14:35:18 +02:00

11 lines
165 B
PHP

<?php
namespace App\SiteFeatures;
use App\Models\Site;
abstract class Action implements ActionInterface
{
public function __construct(public Site $site) {}
}