We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
17 | class FieldDefinition extends BaseFieldDefinition |
||
18 | { |
||
19 | /** |
||
20 | * @var callable |
||
21 | */ |
||
22 | private $complexityFn; |
||
23 | |||
24 | 38 | public static function getDefinition() |
|
33 | |||
34 | 37 | public static function createMap(array $fields) |
|
46 | |||
47 | /** |
||
48 | * @param array $field |
||
49 | * |
||
50 | * @return FieldDefinition |
||
51 | */ |
||
52 | 37 | public static function create($field) |
|
58 | |||
59 | 37 | protected function __construct(array $config) |
|
65 | |||
66 | /** |
||
67 | * @return callable|\Closure |
||
68 | */ |
||
69 | 10 | public function getComplexityFn() |
|
73 | |||
74 | 12 | public static function defaultComplexity($childrenComplexity) |
|
78 | } |
||
79 |