Results 2 issues of Koala

``` [root@79ae4d783f8a mysql]# systemctl status mysqld ● mysqld.service - MySQL Server Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; vendor preset: disabled) Active: deactivating (stop-sigterm) (Result: exit-code) Process: 2896 ExecStart=/usr/sbin/mysqld --daemonize --pid-file=/var/run/mysqld/mysqld.pid $MYSQLD_OPTS (code=exited,...

执行创建模块命令:php artisan hd:module Admin,然后报出 ErrorException : copy(/xxxx/Modules/Admin/config/hd_module.php): failed to open stream: No such file or directory 原因是:$to = \Module::getModulePath($this->module).'config/'.basename($file); 这一行代码中的config对应的目录是首字母大写,因此需要把这个改为Config 如果作者看到这个问题,请进行修改。