*/ class ClientEntity implements ClientEntityInterface { use EntityTrait, ClientTrait; /** * @var string */ protected $grantType; /** * Get the client's name. * * @return string * @codeCoverageIgnore */ public function getGrantType() { return $this->grantType; } /** * @param $grantType */ public function setGrantType($grantType) { $this->grantType = $grantType; } /** * @param $name */ public function setName($name) { $this->name = $name; } /** * @param $redirectUri */ public function setRedirectUri($redirectUri) { $this->redirectUri = $redirectUri; } /** * Returns true if the client is confidential. * * @return bool */ public function isConfidential() { return true; } }