File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ exceptions/differences/extensions.
8
8
9
9
- Keep the nesting of control structures per method as small as possible
10
10
- Abstract exception class names and exception interface names should be suffixed with ``Exception ``
11
- - Abstract classes should not be prefixed with ``Abstract ``
12
- - Interfaces should not be suffixed with ``Interface ``
13
- - Concrete exception class names should not be suffixed with ``Exception ``
11
+ - Abstract classes should not be prefixed or suffixed with ``Abstract ``
12
+ - Interfaces should not be prefixed or suffixed with ``Interface ``
13
+ - Concrete exception class names should not be prefixed or suffixed with ``Exception ``
14
14
- Align equals (``= ``) signs in assignments
15
15
- Add spaces around a concatenation operator ``$foo = 'Hello ' . 'World!'; ``
16
16
- Add spaces between assignment, control and return statements
Original file line number Diff line number Diff line change 130
130
</rule >
131
131
<!-- Forbid dead code -->
132
132
<rule ref =" SlevomatCodingStandard.Classes.UnusedPrivateElements" />
133
- <!-- Forbid suffix "Abstract" for abstract classes -->
133
+ <!-- Forbid prefix and suffix "Abstract" for abstract classes -->
134
134
<rule ref =" SlevomatCodingStandard.Classes.SuperfluousAbstractClassNaming" />
135
- <!-- Forbid suffix "Exception" for exception classes -->
135
+ <!-- Forbid prefix and suffix "Exception" for exception classes -->
136
136
<rule ref =" SlevomatCodingStandard.Classes.SuperfluousExceptionNaming" />
137
- <!-- Forbid suffix "Interface" for interfaces -->
137
+ <!-- Forbid prefix and suffix "Interface" for interfaces -->
138
138
<rule ref =" SlevomatCodingStandard.Classes.SuperfluousInterfaceNaming" />
139
139
<!-- Forbid suffix "Trait" for interfaces -->
140
140
<rule ref =" SlevomatCodingStandard.Classes.SuperfluousTraitNaming" />
You can’t perform that action at this time.
0 commit comments