callbacks.php 727 B

12345678910111213141516171819
  1. <?php
  2. /****************************************************************
  3. * Author: libaojia
  4. * Date: 2018/12/19 上午9:47
  5. * Email: livsyitian@163.com
  6. * QQ: 995265288
  7. * User: 芸众商城 www.yunzshop.com
  8. ****************************************************************/
  9. return [
  10. app\common\events\PluginWasEnabled::class => function ($plugins) {
  11. \Artisan::call('migrate',['--path'=>'plugins/integral/migrations','--force'=>true]);
  12. Log::info('[Integral] 插件已启用');
  13. },
  14. app\common\PluginWasDeleted::class => function ($plugins) {
  15. \Artisan::call('migrate:rollback',['--path'=>'plugins/integral/migrations']);
  16. Log::info('[Integral] 插件已禁用');
  17. }
  18. ];