for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace drupol\valuewrapper\Type;
/**
* Class BooleanType
*/
class BooleanType extends TypeValue
{
* {@inheritdoc}
public function hash(): string
$value = $this->value === true ?
'true':
'false';
return $this->doHash($this->getType() . $value);
}