19 lines
334 B
PHP
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);
|
|
}
|