Escudo7/php-project-lvl2

View on GitHub
src/renderers/utilities.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Project\renderers\utilities;

function convertValue($data)
{
    if (isBoolean($data)) {
        return $data === true ? 'true' : 'false';
    }
    return $data;
}

function isBoolean($data)
{
    return gettype($data) === 'boolean';
}