Skip to content
This repository has been archived by the owner on Jul 22, 2022. It is now read-only.

Commit

Permalink
Liste des groupes par l'api (#610)
Browse files Browse the repository at this point in the history
  • Loading branch information
prytoegrian authored and wouldsmina committed Apr 4, 2018
1 parent 013c785 commit e5b5dcd
Show file tree
Hide file tree
Showing 5 changed files with 160 additions and 160 deletions.
7 changes: 6 additions & 1 deletion App/Helpers/Formatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,12 @@ public static function roundToHalf($num)
} elseif ($num < $half - 0.25) {
return floor($num);
}

return $half;
}

public static function bool2String($bool)
{
return $bool ? _('Oui') : _('Non');
}
}
Loading

0 comments on commit e5b5dcd

Please sign in to comment.