2025-02-26 15:21:01 +08:00

14 lines
255 B
PHP
Executable File

<?php
namespace app\manystoreapi\behavior;
class ManystoreLog
{
public function run(&$params)
{
if (request()->isPost() && config('fastadmin.auto_record_log')) {
\app\manystore\model\ManystoreLog::record();
}
}
}