File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 21
21
os :
22
22
- ubuntu-latest
23
23
php-version :
24
+ - 7.0
24
25
- 7.1
25
26
- 7.2
26
27
- 7.3
Original file line number Diff line number Diff line change @@ -34,14 +34,12 @@ impl<T: 'static> ModuleGlobals<T> {
34
34
on_modify : Option < Mh > ,
35
35
modifiable : u32 ,
36
36
) -> zend_ini_entry_def {
37
- #[ cfg( any(
38
- phper_php_version = "7.4" ,
39
- phper_php_version = "7.3" ,
40
- ) ) ]
37
+ #[ cfg( any( phper_php_version = "7.4" , phper_php_version = "7.3" , ) ) ]
41
38
let ( modifiable, name_length) = ( modifiable as std:: os:: raw:: c_uchar , name. len ( ) as u16 ) ;
42
39
#[ cfg( any(
43
40
phper_php_version = "7.2" ,
44
41
phper_php_version = "7.1" ,
42
+ phper_php_version = "7.0" ,
45
43
) ) ]
46
44
let ( modifiable, name_length) = ( modifiable as std:: os:: raw:: c_int , name. len ( ) as u32 ) ;
47
45
You can’t perform that action at this time.
0 commit comments