Skip to content

Commit

Permalink
Merge pull request PHPCSStandards#159 from rodrigoprimo/add-space-bef…
Browse files Browse the repository at this point in the history
…ore-cast-documentation

Add documentation for the SpaceBeforeCast sniff
  • Loading branch information
jrfnl committed Dec 13, 2023
2 parents 040f675 + 1f90b17 commit 186814f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/Standards/Generic/Docs/Formatting/SpaceBeforeCastStandard.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<documentation title="Space Before Cast">
<standard>
<![CDATA[
There should be exactly one space before a cast operator.
]]>
</standard>
<code_comparison>
<code title="Valid: Single space before a cast operator.">
<![CDATA[
$integer =<em> </em>(int) $string;
$c = $a .<em> </em>(string) $b;
]]>
</code>
<code title="Invalid: No space or multiple spaces before a cast operator.">
<![CDATA[
$integer =<em></em>(int) $string;
$c = $a .<em> </em>(string) $b;
]]>
</code>
</code_comparison>
</documentation>

0 comments on commit 186814f

Please sign in to comment.