Edit in GitHubLog an issue

Code sniffer

Code sniffer is a static test for extensions that uses static code analysis to detect violations of the Magento Coding Standard to prevent common coding errors.

Limited information is displayed in the Quality Report section of the product listing page on the Commerce Marketplace, including the number of errors, warnings, and the coding standards version that was used.

What testing is for

Adobe Commerce projects typically use source code from several vendors. By adopting the Magento Coding Standard, we solve two problems:

  1. Identify common coding errors and pitfalls at an early stage before code execution.
  2. Standardize and unify the way code is written, so that it can be read easily by developers from different organizations.

When testing is done

Code sniffer is mandatory for extensions of any type. When you submit an extension, Commerce uses code sniffer to analyze the entire code base regardless of the scope of changes. Only extensions that have passed code sniffer testing can be listed in the Commerce Marketplace.

What is being checked

Code sniffer validates that the implementation of the submitted extension adheres to the Magento Coding Standard.

Tools and environments used

The Magento EQP code sniffer is based on the PHP_CodeSniffer and uses Magento Coding Standard as a ruleset.

You can complete code sniffer testing in a development environment by using Composer to install PHPCS and the Magento Coding Standard as a global dependency for a particular project.

You can test an extension to detect violations of the Magento Coding Standard using the following PHPCS CLI command:

Copied to your clipboard
phpcs --standard=Magento2 --extensions=php,phtml --error-severity=10 --ignore-annotations --report=json --report-file=report.json <path-to-extension>

If PHPCS finds any errors, the extension in <path-to-extension> is rejected.

Reading the error report

All detected errors include a description of the problem with references to the locations in the code where the errors were detected.

The Magento Coding Standard evolves continuously and the rules change. You can find the most current version with an up-to-date list of implemented rules in the Magento Coding Standard GitHub repository.

According to the Magento Coding Standard, code sniffer classifies detected violations in the following type categories:

TypeSeverityDescription
Error
10
Critical code issues that indicate a bug or security vulnerability.
Warning
9
Possible security issues that can cause bugs.
Warning
8
Magento specific code issues and design violations.
Warning
7
General code issues.
Warning
6
Code style issues.
Warning
5
PHPDoc formatting and commenting issues.

Only violations of type "Error" (severity >= 10) prevent a submitted extension from being published on the Commerce Marketplace. Although other reported issues do not block delivery of the extension, we encourage developers to review and fix them.

Troubleshooting

As a best practice, we recommend that developers include PHPCS and the Magento Coding Standard in their development workflow and CI/CD infrastructure to verify that code complies with the coding standards before submitting to the Commerce Marketplace.

The Magento Coding Standard is an open source project. You can report issues or submit pull requests with enhancements directly on GitHub.

We welcome feedback and discussion on the Magento Community Engineering Slack #marketplace channel.

  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.