mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-01-07 12:33:53 +05:30
Scopes no longer have names
This commit is contained in:
parent
e9d867ba95
commit
2d90a09f65
@ -6,10 +6,6 @@ class Scope
|
|||||||
{
|
{
|
||||||
protected $id = null;
|
protected $id = null;
|
||||||
|
|
||||||
protected $scope = null;
|
|
||||||
|
|
||||||
protected $name = null;
|
|
||||||
|
|
||||||
protected $description = null;
|
protected $description = null;
|
||||||
|
|
||||||
public function setId($id)
|
public function setId($id)
|
||||||
@ -23,28 +19,6 @@ class Scope
|
|||||||
return $this->id;
|
return $this->id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setScope($scope)
|
|
||||||
{
|
|
||||||
$this->scope = $scope;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getScope()
|
|
||||||
{
|
|
||||||
return $this->scope;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setName($name)
|
|
||||||
{
|
|
||||||
$this->name = $name;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getName()
|
|
||||||
{
|
|
||||||
return $this->name;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setDescription($description)
|
public function setDescription($description)
|
||||||
{
|
{
|
||||||
$this->description = $description;
|
$this->description = $description;
|
||||||
|
Loading…
Reference in New Issue
Block a user