Minor - Add return $this to setters

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

@ -109,6 +109,8 @@ class Platform
public function setKid(string $kid)
{
$this->kid = $kid;
return $this;
}
/**
@ -128,7 +130,9 @@ class Platform
*/
public function setIssuer(string $issuer)
{
$this->issuer = $issuer;
$this->issuer = $issuer;
return $this;
}
/**
@ -149,6 +153,8 @@ class Platform
public function setClientId(string $clientId)
{
$this->clientId = $clientId;
return $this;
}
/**
@ -169,6 +175,8 @@ class Platform
public function setAuthLoginUrl(string $authLoginUrl)
{
$this->authLoginUrl = $authLoginUrl;
return $this;
}
/**
@ -189,6 +197,8 @@ class Platform
public function setAuthTokenUrl(string $authTokenUrl)
{
$this->authTokenUrl = $authTokenUrl;
return $this;
}
/**
@ -209,6 +219,8 @@ class Platform
public function setKeySetUrl(string $keySetUrl)
{
$this->keySetUrl = $keySetUrl;
return $this;
}
/**
@ -229,5 +241,7 @@ class Platform
public function setDeploymentId(string $deploymentId)
{
$this->deploymentId = $deploymentId;
return $this;
}
}

Loading…
Cancel
Save