blacksmith-8.x-1.x-dev/src/Blacksmith/EntityImporter/FieldFormatter/BooleanFieldFormatter.php
src/Blacksmith/EntityImporter/FieldFormatter/BooleanFieldFormatter.php
<?php namespace Drupal\blacksmith\Blacksmith\EntityImporter\FieldFormatter; /** * Class BooleanFieldFormatter. * * @package Drupal\blacksmith\Blacksmith\EntityImporter\FieldFormatter */ class BooleanFieldFormatter extends FieldFormatterBase { /** * {@inheritdoc} */ protected function formatUniqueValue($value) { return (bool) $value ? 1 : 0; } }