-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpstan-baseline.php
40 lines (38 loc) · 1.3 KB
/
phpstan-baseline.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
<?php declare(strict_types = 1);
$ignoreErrors = [];
$ignoreErrors[] = [
'message' => '#^Unsafe usage of new static\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/ErrorBag.php',
];
$ignoreErrors[] = [
'message' => '#^Strict comparison using \\=\\=\\= between mixed and array\\{\\} will always evaluate to false\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Rules/CreditCard.php',
];
$ignoreErrors[] = [
'message' => '#^Method Dimtrovich\\\\Validation\\\\Rules\\\\File\\:\\:defaults\\(\\) should return static\\(Dimtrovich\\\\Validation\\\\Rules\\\\File\\)\\|null but return statement is missing\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Rules/File.php',
];
$ignoreErrors[] = [
'message' => '#^Unsafe usage of new static\\(\\)\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Rules/File.php',
];
$ignoreErrors[] = [
'message' => '#^Binary operation "\\*" between string and 2 results in an error\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Rules/Imei.php',
];
$ignoreErrors[] = [
'message' => '#^Unsafe usage of new static\\(\\)\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Rules/Postalcode.php',
];
$ignoreErrors[] = [
'message' => '#^Unsafe usage of new static\\(\\)\\.$#',
'count' => 1,
'path' => __DIR__ . '/src/Validation.php',
];
return ['parameters' => ['ignoreErrors' => $ignoreErrors]];