1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Should fix tests

This commit is contained in:
Sergey Panteleev
2025-07-21 18:51:34 +03:00
committed by Derick Rethans
parent 6f3689906c
commit 6026e879a6
2 changed files with 8 additions and 14 deletions

View File

@@ -2,6 +2,14 @@
$file = 'unknown';
$latestPhpVersion = '8.4';
if (!isset($options)) {
$options = [
'os' => '',
'usage' => '',
'version' => '',
];
}
if ($options['os'] === 'windows') {
if ($options['osvariant'] === 'windows-wsl-debian') {
$options['os'] = 'linux';

View File

@@ -508,20 +508,6 @@ div.classsynopsisinfo_comment {
margin-top:1.5rem;
}
.phpcode {
background-color: #FFF;
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15);
border-radius: 0 0 2px 2px;
overflow-x: auto;
display: flex;
align-items: center;
width: 100%;
height: 100%;
padding: 0 1.5rem;
box-sizing: border-box;
margin: 0;
}
.instructions {
margin-bottom: 2rem;
}