for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Ytake\KsqlClient\Entity;
/**
* Class FieldSchema
*/
final class FieldSchema
{
/** @var string */
private $name;
private $type;
* @param string $name
* @param string $type
public function __construct(string $name, string $type)
$this->name = $name;
$this->type = $type;
}
* @return string
public function getName(): string
return $this->name;
public function getType(): string
return $this->type;