Cassandra\CollectionsIntegrationTest::setUp PHP Метод

setUp() защищенный Метод

Create user types after initializing cluster and session
protected setUp ( )
    protected function setUp()
    {
        parent::setUp();
        foreach ($this->compositeCassandraTypes() as $cassandraType) {
            if ($cassandraType[0] instanceof Type\UserType) {
                $this->createUserType($cassandraType[0]);
            }
        }
        foreach ($this->nestedCassandraTypes() as $cassandraType) {
            if ($cassandraType[0] instanceof Type\UserType) {
                $this->createUserType($cassandraType[0]);
            }
        }
    }