proper scoping to callback structures + usage Information Method

This commit is contained in:
kremsy
2017-03-26 12:42:20 +02:00
parent 4effad8f6d
commit de3bae9029
16 changed files with 172 additions and 132 deletions

View File

@ -10,14 +10,14 @@ class Landmark {
private $position = null;
/**
* @return mixed
* @return string
*/
public function getTag() {
return $this->tag;
}
/**
* @param mixed $tag
* @param string $tag
*/
public function setTag($tag) {
$this->tag = $tag;
@ -52,14 +52,14 @@ class Landmark {
}
/**
* @return mixed
* @return \ManiaControl\Callbacks\Structures\ShootMania\Models\Position
*/
public function getPosition() {
return $this->position;
}
/**
* @param mixed $position
* @param \ManiaControl\Callbacks\Structures\ShootMania\Models\Position $position
*/
public function setPosition(Position $position) {
$this->position = $position;