Add setIsConfidential to client stub for tests

This commit is contained in:
Andrew Millington
2018-08-12 20:34:58 +01:00
parent 04807a1e2a
commit abef682031
2 changed files with 7 additions and 1 deletions

View File

@@ -14,4 +14,9 @@ class ClientEntity implements ClientEntityInterface
{
$this->redirectUri = $uri;
}
public function setIsConfidential()
{
$this->isConfidential = true;
}
}