我正在我的Laravel插件中发布文件,并在此行中:
$this->publishes([__DIR__ . '/../config/tournaments.php' => config_path('tournaments.php'), '']);
我明白了:
Can't locate path: <0>
这很奇怪,因为当我打印config_path('tournaments.php')时,它没关系,旁边,文件被很好地复制....所以,一切正常,但我想摆脱这个消息,不应该在那里....
任何想法????
答案 0 :(得分:0)
尝试删除''
数组中的空publishes
:
$this->publishes([__DIR__ . '/../config/tournaments.php' => config_path('tournaments.php'),]);
Laravel成功发布了tournaments.php
,但为您提供了空白值的错误。这里有更多信息:https://laravel.com/docs/5.4/packages#resources