-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathMethodAnnotationStructureUnitTest.php
62 lines (59 loc) · 1.19 KB
/
MethodAnnotationStructureUnitTest.php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento2\Tests\Annotation;
use PHP_CodeSniffer\Tests\Standards\AbstractSniffUnitTest;
class MethodAnnotationStructureUnitTest extends AbstractSniffUnitTest
{
/**
* @inheritdoc
*/
public function getErrorList()
{
return [
2 => 1,
10 => 1,
18 => 1,
30 => 1,
36 => 1,
45 => 2,
47 => 1,
55 => 1,
63 => 1,
80 => 1,
112 => 1,
118 => 1,
137 => 1,
145 => 2,
185 => 1,
227 => 1,
235 => 1,
261 => 1,
268 => 2,
269 => 1,
277 => 1,
278 => 1,
288 => 1,
289 => 1,
298 => 1,
416 => 1,
427 => 1,
438 => 1,
444 => 1,
];
}
/**
* @inheritdoc
*/
public function getWarningList()
{
return [
326 => 1,
336 => 1,
347 => 1,
358 => 1
];
}
}