DataType/BooleanDataType.php
<?php
namespace Netdudes\DataSourceryBundle\DataType;
use Netdudes\DataSourceryBundle\Query\FilterCondition;
class BooleanDataType extends AbstractDataType
{
/**
* Return an array of available sorting methods
*
* @return array
*/
public function getAvailableFilterMethods()
{
return [
FilterCondition::METHOD_BOOLEAN
];
}
/**
* Return the identifier of the default sort method
*
* @return int
*/
public function getDefaultFilterMethod()
{
return FilterCondition::METHOD_BOOLEAN;
}
/**
* Return the name of the type, unique.
*
* @return string
*/
public function getName()
{
return 'boolean';
}
}