Minor - Add return $this to setters

pull/3914/head
Yannick Warnier 4 years ago committed by GitHub
parent d014d2d5af
commit 20c8ed2ccc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      plugin/lti_provider/Entity/PlatformKey.php

@ -81,6 +81,8 @@ class PlatformKey
public function setKid(string $kid)
{
$this->kid = $kid;
return $this;
}
/**
@ -121,5 +123,7 @@ class PlatformKey
public function setPublicKey(string $publicKey)
{
$this->publicKey = $publicKey;
return $this;
}
}

Loading…
Cancel
Save