mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 04:47:10 +08:00
16 lines
204 B
PHP
16 lines
204 B
PHP
|
<?php
|
||
|
|
||
|
namespace SuiteCRM\Core\Base;
|
||
|
|
||
|
/**
|
||
|
* Interface RunnableInterface
|
||
|
* @package SuiteCRM\Core\Base
|
||
|
*/
|
||
|
interface RunnableInterface
|
||
|
{
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function run();
|
||
|
}
|