示例#1
0
function milking(Feeding $feeding)
{
    if (!$feeding->hasMilking()) {
        return '';
    }
    return $feeding->getMilking() . ' mL';
}