Composer PSR-4 Autoload Interface Deprecation Notice(Composer PSR-4 自动加载接口弃用通知)
问题描述
我无法理解这个简单的界面有什么问题.
I'm having trouble understanding what's wrong with this simple interface.
<?php
namespace AppInterfaces;
use IlluminateViewView;
interface renderData
{
public function renderAsHtml(): View;
}
当我 composer dump-autoload 我收到以下通知
When I composer dump-autoload i receive the following notice
弃用通知:位于 ./app/Interfaces/RenderData.php 中的类 AppInterfaces enderData 不符合 psr-4 自动加载标准.在 Composer v2.0 中将不再自动加载.
Deprecation Notice: Class AppInterfaces enderData located in ./app/Interfaces/RenderData.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0.
composer.json 自动加载部分:
composer.json autoload part:
"autoload": {
"psr-4": {
"App\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
文件夹结构为:
<root_project>
app
Console
...
我已经尝试将 app 重命名为 App 然后 dump-autoload 但问题仍然存在.
I have already try to rename app to App then dump-autoload but the problem persist.
推荐答案
可能是app/Interfaces/RenderData'中'app'文件夹的首字母小写,而'应用接口".
It could be that first letter of ‘app’ folder is in small case in app/Interfaces/RenderData’, but in the namespace is in upper case in ‘AppInterfaces’.
确保文件夹结构和命名与命名空间匹配.
Make sure the folder structure and naming matches namespace.
这篇关于Composer PSR-4 自动加载接口弃用通知的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Composer PSR-4 自动加载接口弃用通知
基础教程推荐
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 如何替换eregi() 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
