ichynul / configx

[laravel-admin]增加/修改配置项,管理网站的配置(Add / edit configuration, Manage site configuration)
https://gitee.com/ichynul/configx
MIT License
32 stars 7 forks source link

some error with multiple image or select #15

Closed TheBlueSkim closed 4 years ago

TheBlueSkim commented 4 years ago

In Tool.php function prepareUpdate `if ($field instanceof MultipleFile) {

                $value = implode(',', $value);
            } else if ($field instanceof MultipleSelect) {

                $value = implode(',', $value);
            }`

cause the dependence class MultipleFile and MultipleSelect are never be imported, the value will be troubled with error of type conversion "Array to String"