Cassandra\DatatypeIntegrationTest::dataTypes PHP Method

dataTypes() public method

Data provider scalar data types
public dataTypes ( )
    public function dataTypes()
    {
        return array_map(function ($cassandraType) {
            $type = $cassandraType[0];
            $values = array();
            foreach ($cassandraType[1] as $value) {
                $values[] = $value;
            }
            return array($type, $values);
        }, $this->scalarCassandraTypes());
    }