Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update App Identity Proto Classes #52

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open

Conversation

zachluna
Copy link
Member

@zachluna zachluna commented May 1, 2021

No description provided.

@zachluna zachluna changed the title App identity proto Update App Identity Proto Classes May 1, 2021
$req = new \Google\AppEngine\Api\AppIdentity\GetPublicCertificateForAppRequest();
$resp = new \Google\AppEngine\Api\AppIdentity\GetPublicCertificateForAppResponse();

// $public_certificate_list = $resp->getPublicCertificateList();
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove

@@ -31,13 +31,20 @@ public function isInputEqual($other) {

return $this->package === $other->package
&& $this->call_name === $other->call_name
&& $this->req->equals($other->req);
&& $this->equals($this->req,$other->req);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Space between args

}

public function toString() {
return "Package: " . $this->package . "\n"
. "Call: " . $this->call_name . "\n"
. $this->req->shortDebugString();
}

private function equals($a, $b) {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe reqsEqual instead, equals sounds like it refers to equality of the class as a whole

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants