Scopes no longer have names

This commit is contained in:
Alex Bilbie 2013-12-31 15:36:02 +00:00
parent e9d867ba95
commit 2d90a09f65

View File

@ -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;