Doctrine\DBAL\Platforms\PostgreSqlPlatform::setUseBooleanTrueFalseStrings PHP Method

setUseBooleanTrueFalseStrings() public method

Enables use of 'true'/'false' or otherwise 1 and 0 instead.
    public function setUseBooleanTrueFalseStrings($flag)
    {
        $this->useBooleanTrueFalseStrings = (bool) $flag;
    }
PostgreSqlPlatform