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