-
Notifications
You must be signed in to change notification settings - Fork 0
/
.phan.php
44 lines (36 loc) · 1.25 KB
/
.phan.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
<?php
/**
* JBZoo Toolbox - Csv-Blueprint.
*
* This file is part of the JBZoo Toolbox project.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @license MIT
* @copyright Copyright (C) JBZoo.com, All rights reserved.
* @see https://github.com/JBZoo/Csv-Blueprint
*/
declare(strict_types=1);
$default = include __DIR__ . '/vendor/jbzoo/codestyle/src/phan.php';
// Remove SimplifyExpressionPlugin from plugin list
$default['plugins'] = \array_diff($default['plugins'], ['SimplifyExpressionPlugin']);
$default['suppress_issue_types'][] = 'PhanUnusedProtectedFinalMethodParameter';
return \array_merge($default, [
'directory_list' => [
'src',
'vendor/jbzoo/data/src',
'vendor/jbzoo/cli/src',
'vendor/jbzoo/utils/src',
'vendor/jbzoo/ci-report-converter/src',
'vendor/symfony/console',
'vendor/symfony/finder',
'vendor/symfony/yaml',
'vendor/league/csv/src',
'vendor/markrogoyski/math-php/src',
'vendor/respect/validation',
'vendor/fidry/cpu-core-counter',
],
'autoload_internal_extension_signatures' => [
'parallel' => 'tests/stubs/parallel.stub_php',
],
]);