-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan-baseline.php
More file actions
27 lines (23 loc) · 855 Bytes
/
phpstan-baseline.php
File metadata and controls
27 lines (23 loc) · 855 Bytes
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
<?php declare(strict_types = 1);
$ignoreErrors = [];
$ignoreErrors[] = [
'message' => '#^Access to an undefined property hasProperty\\(Status\\)\\:\\:\\$Data\\.$#',
'count' => 3,
'path' => __DIR__ . '/src/Drivers/AmootsmsDriver.php',
];
$ignoreErrors[] = [
'message' => '#^Access to an undefined property hasProperty\\(status\\)\\:\\:\\$data\\.$#',
'count' => 3,
'path' => __DIR__ . '/src/Drivers/IdehpardazanDriver.php',
];
$ignoreErrors[] = [
'message' => '#^Access to an undefined property hasProperty\\(status\\)\\:\\:\\$data\\.$#',
'count' => 2,
'path' => __DIR__ . '/src/Drivers/FarazsmsDriver.php',
];
$ignoreErrors[] = [
'message' => '#Access to an undefined property hasProperty\(sid\)::\$status.#',
'count' => 1,
'path' => __DIR__ . '/src/Drivers/TwilioDriver.php',
];
return ['parameters' => ['ignoreErrors' => $ignoreErrors]];