mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-12-15 17:58:56 +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 $scope = null;
|
||||
|
||||
protected $name = null;
|
||||
|
||||
protected $description = null;
|
||||
|
||||
public function setId($id)
|
||||
@ -23,28 +19,6 @@ class Scope
|
||||
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)
|
||||
{
|
||||
$this->description = $description;
|
||||
|
Loading…
Reference in New Issue
Block a user