for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Win\Format;
/**
* Manipulador de Booleanos
*/
class Boolean {
* @param boolean $boolean
* @return string
public static function toString($boolean) {
return ($boolean) ? 'sim' : 'não';
}