21 lines
408 B
PHP
21 lines
408 B
PHP
<?php
|
|
/**
|
|
* DesignService.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author Edward Yang <yangjin@opencart.cn>
|
|
* @created 2022-07-14 20:57:37
|
|
* @modified 2022-07-14 20:57:37
|
|
*/
|
|
|
|
namespace Beike\Admin\Services;
|
|
|
|
class DesignService
|
|
{
|
|
public static function handleModules($moduleData)
|
|
{
|
|
return $moduleData;
|
|
}
|
|
}
|