Files
proxmox-selfservice/qa-tool/htdocs/vendor/litesaml/lightsaml/src/Action/CompositeActionInterface.php
Sven Steinert fce31ebcd7 Viel neues
2026-04-30 12:06:00 +02:00

19 lines
334 B
PHP

<?php
namespace LightSaml\Action;
interface CompositeActionInterface extends ActionInterface
{
/**
* @return CompositeActionInterface
*/
public function add(ActionInterface $action);
/**
* @param callable $callable
*
* @return ActionInterface|null
*/
public function map($callable);
}