'/local', // Database endpoint 'endpoint' => 'localhost:2136', // Auto discovery (dedicated server only) 'discovery' => false, // IAM config 'iam_config' => [ 'insecure' => true, ], 'credentials' => new StaticAuthentication('testuser', 'test_password') ]; $ydb = new Ydb($config, new SimpleStdLogger(7)); $ydb->table()->query("SELECT 1;"); self::assertNotEquals("", $ydb->token()); } }