Neos\Neos\Ui\Domain\Service\NodePropertyConversionService::convertBoolean PHP Method

convertBoolean() protected method

Convert raw value to boolean
protected convertBoolean ( mixed $rawValue ) : boolean
$rawValue mixed
return boolean
    protected function convertBoolean($rawValue)
    {
        if (is_string($rawValue)) {
            return strtolower($rawValue) === 'true' ? true : false;
        }
        return (bool) $rawValue;
    }