mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-27 15:54:03 +02:00
NameValueTable: change method signature to not...
...switch context when used fluently
This commit is contained in:
parent
785802cbd6
commit
374b6d4a60
@ -15,7 +15,8 @@ class NameValueTable extends Table
|
|||||||
|
|
||||||
public function addNameValueRow($name, $value)
|
public function addNameValueRow($name, $value)
|
||||||
{
|
{
|
||||||
return $this->body()->add($this->createNameValueRow($name, $value));
|
$this->body()->add($this->createNameValueRow($name, $value));
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function addNameValuePairs($pairs)
|
public function addNameValuePairs($pairs)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user