project_start/phpstorm-stubs/simple_kafka_client/SimpleKafkaClient/Metadata.php

32 lines
569 B
PHP

<?php
declare(strict_types=1);
namespace SimpleKafkaClient;
class Metadata
{
/**
* @return int
* @throws Exception
*/
public function getOrigBrokerId(): int {}
/**
* @return string
* @throws Exception
*/
public function getOrigBrokerName(): string {}
/**
* @return Metadata\Collection
* @throws Exception
*/
public function getBrokers(): Metadata\Collection {}
/**
* @return Metadata\Collection
* @throws Exception
*/
public function getTopics(): Metadata\Collection {}
}