File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 14
14
// Note that the **only** effect of choosing `'5.6'` is to infer
15
15
// that functions removed in php 7.0 exist.
16
16
// (See `backward_compatibility_checks` for additional options)
17
- 'target_php_version ' => null ,
18
- 'minimum_target_php_version ' => '7.4 ' ,
17
+ 'target_php_version ' => null ,
18
+ 'minimum_target_php_version ' => '7.4 ' ,
19
19
20
20
// A list of directories that should be parsed for class and
21
21
// method information. After excluding the directories
24
24
//
25
25
// Thus, both first-party and third-party code being used by
26
26
// your application should be included in this list.
27
- 'directory_list ' => [
27
+ 'directory_list ' => [
28
28
'examples ' ,
29
29
'src ' ,
30
30
'tests ' ,
35
35
// exclude from parsing. Actual value will exclude every
36
36
// "test", "tests", "Test" and "Tests" folders found in
37
37
// "vendor/" directory.
38
- 'exclude_file_regex ' => '@^vendor/.*/(tests?|Tests?)/@ ' ,
38
+ 'exclude_file_regex ' => '@^vendor/.*/(tests?|Tests?)/@ ' ,
39
39
40
40
// A directory list that defines files that will be excluded
41
41
// from static analysis, but whose class and method
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ public function fromIterable(iterable $properties):SettingsContainerInterface{
139
139
* @inheritdoc
140
140
*/
141
141
public function toJSON (int $ jsonOptions = null ):string {
142
- return json_encode ($ this , $ jsonOptions ?? 0 );
142
+ return json_encode ($ this , ( $ jsonOptions ?? 0 ) );
143
143
}
144
144
145
145
/**
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ public function testToArray(){
89
89
'testConstruct ' => 'success ' ,
90
90
'test4 ' => null ,
91
91
'test5 ' => null ,
92
- 'test6 ' => null
92
+ 'test6 ' => null ,
93
93
], $ container ->toArray ());
94
94
}
95
95
You can’t perform that action at this time.
0 commit comments