-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpcs-ignores.neon
31 lines (26 loc) · 1.02 KB
/
phpcs-ignores.neon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
ignoreErrors:
-
sniff: SlevomatCodingStandard.Classes.RequireAbstractOrFinal.ClassNeitherAbstractNorFinal
message: All classes should be declared using either the "abstract" or "final" keyword.
count: 1
path: src/PagesFactory.php
-
sniff: PSR1.Files.SideEffects.FoundWithSymbols
message: 'A file should declare new symbols (classes, functions, constants, etc.) and cause no other side effects, or it should execute logic with side effects, but should not do both. The first symbol is defined on line 11 and the first side effect is on line 3.'
count: 1
path: tests/tests.php
-
sniff: Squiz.Functions.GlobalFunction.Found
message: Consider putting global function "compareArray" in a static class
count: 1
path: tests/tests.php
-
sniff: Squiz.WhiteSpace.FunctionSpacing.After
message: Expected 2 blank lines after function; 1 found
count: 1
path: tests/tests.php
-
sniff: Squiz.WhiteSpace.FunctionSpacing.Before
message: Expected 2 blank lines before function; 1 found
count: 1
path: tests/tests.php