From 2d90a09f65391f45be9e930badb78e035901ee47 Mon Sep 17 00:00:00 2001 From: Alex Bilbie Date: Tue, 31 Dec 2013 15:36:02 +0000 Subject: [PATCH] Scopes no longer have names --- src/League/OAuth2/Server/Entities/Scope.php | 26 --------------------- 1 file changed, 26 deletions(-) diff --git a/src/League/OAuth2/Server/Entities/Scope.php b/src/League/OAuth2/Server/Entities/Scope.php index acbd86c4..0b7be0fd 100644 --- a/src/League/OAuth2/Server/Entities/Scope.php +++ b/src/League/OAuth2/Server/Entities/Scope.php @@ -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;