Sonata\Exporter\Writer\FormattedBoolWriter::__construct PHP Method

__construct() public method

public __construct ( Sonata\Exporter\Writer\WriterInterface $writer, string $trueLabel = 'yes', string $falseLabel = 'no' )
$writer Sonata\Exporter\Writer\WriterInterface
$trueLabel string
$falseLabel string
    public function __construct(WriterInterface $writer, $trueLabel = 'yes', $falseLabel = 'no')
    {
        $this->writer = $writer;
        $this->trueLabel = $trueLabel;
        $this->falseLabel = $falseLabel;
    }