Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何解决这个 phpcs 错误?它显示Keyword在所有 Laravel 迁移文件中的类。错误信息是:
Keyword
每个类必须在至少一个级别(顶级供应商名称)phpcs 的命名空间中
您可以通过几种不同的方式进行操作:
首先,您可以将其放在文件的顶部:
// phpcs:disable PSR1.Classes.ClassDeclaration.MissingNamespace
其次,您可以使用:
// @codingStandardsIgnoreLine
就在你的班级声明之前。
希望其中任何一种对您有用。如果问题仍然存在,请让我知道这一点。