rspec/rules/S2046/php/rule.adoc
2021-04-28 18:08:03 +02:00

17 lines
305 B
Plaintext

Shared coding conventions allow teams to collaborate effectively. This rule flags all Perl-style comments.
== Noncompliant Code Example
----
$myvar; # Noncompliant; this comment should have started with "//"
----
== Compliant Solution
----
$myvar; // Compliant; this comment started with "//"
----