File tree Expand file tree Collapse file tree 3 files changed +14
-14
lines changed Expand file tree Collapse file tree 3 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 19
19
'meta ' => new Meta (
20
20
title: 'Example of simple spec file ' ,
21
21
prefix: 'Humbug ' ,
22
- minPhpVersion: 72_000 ,
23
- maxPhpVersion: 83_000 ,
22
+ minPhpVersion: 70_200 ,
23
+ maxPhpVersion: 80_300 ,
24
24
exposeGlobalConstants: true ,
25
25
exposeGlobalClasses: true ,
26
26
exposeGlobalFunctions: true ,
60
60
61
61
'Spec with overridden meta values ' => SpecWithConfig::create (
62
62
prefix: 'AnotherPrefix ' ,
63
- minPhpVersion: 73_000 ,
64
- maxPhpVersion: 82_000 ,
63
+ minPhpVersion: 70_300 ,
64
+ maxPhpVersion: 80_200 ,
65
65
exposeGlobalConstants: false ,
66
66
exposeGlobalClasses: false ,
67
67
exposeGlobalFunctions: false ,
Original file line number Diff line number Diff line change @@ -106,8 +106,8 @@ public static function specProvider(): iterable
106
106
self ::FIXTURE_DIR .'/complete-spec-file.php ' ,
107
107
[
108
108
'Fixtures/complete-spec-file.php: Spec with default meta values ' => new SpecScenario (
109
- 72_000 ,
110
- 83_000 ,
109
+ 70_200 ,
110
+ 80_300 ,
111
111
'Fixtures/complete-spec-file.php:39 ' ,
112
112
'[Example of simple spec file] Spec with default meta values ' ,
113
113
$ specCode ,
@@ -130,8 +130,8 @@ public static function specProvider(): iterable
130
130
['Acme\recorded_function ' , 'Humbug\Acme\recorded_function ' ],
131
131
),
132
132
'Fixtures/complete-spec-file.php: Spec with the more verbose form ' => new SpecScenario (
133
- 72_000 ,
134
- 83_000 ,
133
+ 70_200 ,
134
+ 80_300 ,
135
135
'Fixtures/complete-spec-file.php:49 ' ,
136
136
'[Example of simple spec file] Spec with the more verbose form ' ,
137
137
$ specCode ,
@@ -154,8 +154,8 @@ public static function specProvider(): iterable
154
154
['Acme\recorded_function ' , 'Humbug\Acme\recorded_function ' ],
155
155
),
156
156
'Fixtures/complete-spec-file.php: Spec with overridden meta values ' => new SpecScenario (
157
- 73_000 ,
158
- 82_000 ,
157
+ 70_300 ,
158
+ 80_200 ,
159
159
'Fixtures/complete-spec-file.php:61 ' ,
160
160
'[Example of simple spec file] Spec with overridden meta values ' ,
161
161
$ specCode ,
Original file line number Diff line number Diff line change @@ -137,8 +137,8 @@ public static function scenarioProvider(): iterable
137
137
138
138
yield 'complete scenario without symbols ' => [
139
139
new SpecScenario (
140
- 72_000 ,
141
- 83_000 ,
140
+ 70_200 ,
141
+ 80_300 ,
142
142
'Fixtures/complete-spec-file.php ' ,
143
143
'[Example of simple spec file] Spec with the more verbose form ' ,
144
144
$ specCode ,
@@ -217,8 +217,8 @@ public static function scenarioProvider(): iterable
217
217
218
218
yield 'complete scenario with multiple items without symbols ' => [
219
219
new SpecScenario (
220
- 72_000 ,
221
- 83_000 ,
220
+ 70_200 ,
221
+ 80_300 ,
222
222
'Fixtures/complete-spec-file.php ' ,
223
223
'[Example of simple spec file] Spec with the more verbose form ' ,
224
224
$ specCode ,
You can’t perform that action at this time.
0 commit comments