Adds methods setTitle and setName to SceneConnectionGroup

This commit is contained in:
Basilius Sauter
2019-04-23 14:35:04 +02:00
parent 4ca81a3789
commit 7725c7faed
+18
View File
@@ -72,6 +72,15 @@ class SceneConnectionGroup implements SceneConnectable
return $this->name;
}
/**
* Sets the name-identifier of this connection group.
* @param string $name
*/
public function setName(string $name)
{
$this->name = $name;
}
/**
* Returns the title of this connection group.
* @return string
@@ -81,6 +90,15 @@ class SceneConnectionGroup implements SceneConnectable
return $this->title;
}
/**
* Sets the title of this connection group.
* @param string $title
*/
public function setTitle(string $title)
{
$this->title = $title;
}
/**
* @inheritDoc
*/