monitoring: Prever 'Hostname' over 'Host name' in PHPDoc
This commit is contained in:
parent
0300a90d14
commit
680b7e4eba
|
@ -47,7 +47,7 @@ class Host extends MonitoredObject
|
||||||
public $prefix = 'host_';
|
public $prefix = 'host_';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Host name
|
* Hostname
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
|
@ -63,8 +63,8 @@ class Host extends MonitoredObject
|
||||||
/**
|
/**
|
||||||
* Create a new host
|
* Create a new host
|
||||||
*
|
*
|
||||||
* @param MonitoringBackend $backend Backend to fetch host information from
|
* @param MonitoringBackend $backend Backend to fetch host information from
|
||||||
* @param string $host Host name
|
* @param string $host Hostname
|
||||||
*/
|
*/
|
||||||
public function __construct(MonitoringBackend $backend, $host)
|
public function __construct(MonitoringBackend $backend, $host)
|
||||||
{
|
{
|
||||||
|
@ -73,7 +73,7 @@ class Host extends MonitoredObject
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the host name
|
* Get the hostname
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -68,9 +68,9 @@ class Service extends MonitoredObject
|
||||||
/**
|
/**
|
||||||
* Create a new service
|
* Create a new service
|
||||||
*
|
*
|
||||||
* @param MonitoringBackend $backend Backend to fetch service information from
|
* @param MonitoringBackend $backend Backend to fetch service information from
|
||||||
* @param string $host Host name the service is running on
|
* @param string $host Hostname the service is running on
|
||||||
* @param string $service Service name
|
* @param string $service Service name
|
||||||
*/
|
*/
|
||||||
public function __construct(MonitoringBackend $backend, $host, $service)
|
public function __construct(MonitoringBackend $backend, $host, $service)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue