for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Desmond\data_types;
class TrueType extends AbstractAtom
{
public function __construct()
$this->setValue(true);
}
public function __toString()
return 'true';