BpNode: rename url to infoUrl

This commit is contained in:
Thomas Gelf 2014-11-30 11:56:14 +01:00
parent 91dc292241
commit 2001b2445e

View file

@ -57,16 +57,22 @@ class BpNode extends Node
return $this->operator;
}
public function setUrl($url)
public function setInfoUrl($url)
{
$this->url = $url;
return $this;
}
public function hasUrl()
public function hasInfoUrl()
{
return $this->url !== null;
}
public function getInfoUrl()
{
return $this->url;
}
public function setInfoCommand($cmd)
{
$this->info_command = $cmd;
@ -77,11 +83,6 @@ class BpNode extends Node
return $this->info_command !== null;
}
public function getUrl()
{
return $this->url;
}
public function getInfoCommand()
{
return $this->info_command;