Skip to content

Commit

Permalink
Update src/views/web/index.php
Browse files Browse the repository at this point in the history
Co-authored-by: Alexander Makarov <[email protected]>
  • Loading branch information
luizcmarin and samdark authored Jun 21, 2024
1 parent 53037e8 commit c5f9a08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/web/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ functionality may be not available in this case.
<th>Note</th>
</tr>
<?php foreach ($requirements as $requirement) : ?>
<tr class="<?php echo $requirement['condition'] ? 'success' : ($requirement['mandatory'] ? 'danger' : 'warning') ?>">
<tr class="<?= $requirement['condition'] ? 'success' : ($requirement['mandatory'] ? 'danger' : 'warning') ?>">

Check warning on line 66 in src/views/web/index.php

View check run for this annotation

Codecov / codecov/patch

src/views/web/index.php#L58-L66

Added lines #L58 - L66 were not covered by tests
<td>
<?php echo $requirement['name'] ?>
</td>

Check warning on line 69 in src/views/web/index.php

View check run for this annotation

Codecov / codecov/patch

src/views/web/index.php#L68-L69

Added lines #L68 - L69 were not covered by tests
Expand Down

0 comments on commit c5f9a08

Please sign in to comment.