Skip to content

Commit

Permalink
Try this
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfnl committed Nov 30, 2024
1 parent 3fd415c commit b303ff3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/BuildRequirementsCheckMatrix.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ private function getValidBuilds()
foreach ($extensions as $name => $exts) {
foreach ($this->os as $os) {
$builds[] = [
'name' => ":heavy_check_mark: exts: $name",
'name' => " exts: $name",
'os' => $os,
'cmd' => $cmd,
'php' => $php,
Expand Down Expand Up @@ -126,7 +126,7 @@ private function getInvalidPHPBuilds()
foreach ($extensions as $exts) {
foreach ($this->os as $os) {
$builds[] = [
'name' => ':x: PHP too low',
'name' => ' PHP too low',
'os' => $os,
'cmd' => $cmd,
'php' => $php,
Expand Down Expand Up @@ -161,7 +161,7 @@ private function getMissingExtensionsBuilds()
foreach ($extensions as $name => $exts) {
foreach ($this->os as $os) {
$builds[] = [
'name' => ":x: $name",
'name' => " $name",
'os' => $os,
'cmd' => $cmd,
'php' => $php,
Expand Down

0 comments on commit b303ff3

Please sign in to comment.