The *group dataview classes are not in camelCase

Developing on case-insensitive filesystems for mainly
case-sensitive ones is bad habit ;P
This commit is contained in:
Johannes Meyer 2014-09-24 10:21:19 +02:00
parent 0ac7574a8f
commit 032437cdeb
1 changed files with 3 additions and 3 deletions

View File

@ -248,7 +248,7 @@ abstract class MonitoredObject
*/ */
public function fetchHostgroups() public function fetchHostgroups()
{ {
$hostGroups = $this->backend->select()->from('hostGroup', array( $hostGroups = $this->backend->select()->from('hostgroup', array(
'hostgroup_name', 'hostgroup_name',
'hostgroup_alias' 'hostgroup_alias'
)) ))
@ -333,7 +333,7 @@ abstract class MonitoredObject
*/ */
public function fetchServicegroups() public function fetchServicegroups()
{ {
$serviceGroups = $this->backend->select()->from('serviceGroup', array( $serviceGroups = $this->backend->select()->from('servicegroup', array(
'servicegroup_name', 'servicegroup_name',
'servicegroup_alias' 'servicegroup_alias'
)) ))
@ -350,7 +350,7 @@ abstract class MonitoredObject
*/ */
public function fetchContactgroups() public function fetchContactgroups()
{ {
$contactsGroups = $this->backend->select()->from('contactGroup', array( $contactsGroups = $this->backend->select()->from('contactgroup', array(
'contactgroup_name', 'contactgroup_name',
'contactgroup_alias' 'contactgroup_alias'
)) ))