7 lines
175 B
Plaintext
7 lines
175 B
Plaintext
![]() |
[source,php]
|
||
|
----
|
||
|
function get_readable_status($is_running, $has_errors) {
|
||
|
return $is_running ? "Running" : ($has_errors ? "Failure" : "Succeeded"); // Noncompliant
|
||
|
}
|
||
|
----
|