我无法理解这个简单的界面有什么问题。
<?php
namespace App\Interfaces;
use Illuminate\View\View;
interface renderData
{
public function renderAsHtml(): View;
}
当我composer dump-autoload收到以下通知时
弃用通知:位于 ./app/Interfaces/RenderData.php 中的类 App\Interfaces\renderData 不符合 psr-4 自动加载标准。它不会在 Composer v2.0 中自动加载。
composer.json 自动加载部分:
"autoload": {
"psr-4": {
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
文件夹结构为:
<root_project>
app
Console
...
我已经尝试将 app 重命名为 App 然后 dump-autoload 但问题仍然存在。
至尊宝的传说
慕工程0101907