12 lines
202 B
PHP
12 lines
202 B
PHP
<?php
|
|
|
|
namespace Eservice;
|
|
|
|
abstract class Executable extends Configurable
|
|
{
|
|
|
|
public abstract function validate();
|
|
|
|
public abstract function execute($callback = null, $result_from_prev = []);
|
|
}
|