monitoring: Prever 'Hostname' over 'Host name' in PHPDoc

This commit is contained in:
Eric Lippmann 2015-01-20 16:11:41 +01:00
parent 0300a90d14
commit 680b7e4eba
2 changed files with 7 additions and 7 deletions

View File

@ -47,7 +47,7 @@ class Host extends MonitoredObject
public $prefix = 'host_';
/**
* Host name
* Hostname
*
* @var string
*/
@ -63,8 +63,8 @@ class Host extends MonitoredObject
/**
* Create a new host
*
* @param MonitoringBackend $backend Backend to fetch host information from
* @param string $host Host name
* @param MonitoringBackend $backend Backend to fetch host information from
* @param string $host Hostname
*/
public function __construct(MonitoringBackend $backend, $host)
{
@ -73,7 +73,7 @@ class Host extends MonitoredObject
}
/**
* Get the host name
* Get the hostname
*
* @return string
*/

View File

@ -68,9 +68,9 @@ class Service extends MonitoredObject
/**
* Create a new service
*
* @param MonitoringBackend $backend Backend to fetch service information from
* @param string $host Host name the service is running on
* @param string $service Service name
* @param MonitoringBackend $backend Backend to fetch service information from
* @param string $host Hostname the service is running on
* @param string $service Service name
*/
public function __construct(MonitoringBackend $backend, $host, $service)
{