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 自动加载接口弃用通知
基础教程推荐
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01