SuiteCRM-Core/core/base/RunnableInterface.php

16 lines
204 B
PHP
Raw Normal View History

2021-03-30 19:12:01 +01:00
<?php
namespace SuiteCRM\Core\Base;
/**
* Interface RunnableInterface
* @package SuiteCRM\Core\Base
*/
interface RunnableInterface
{
/**
* @return mixed
*/
public function run();
}