mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-13 00:44:25 +02:00
25 lines
464 B
PHP
25 lines
464 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\PropertyModifier;
|
|
|
|
use Icinga\Module\Director\Hook\PropertyModifierHook;
|
|
|
|
class PropertyModifierToInt extends PropertyModifierHook
|
|
{
|
|
public function getName()
|
|
{
|
|
return 'Cast a string value to an Integer';
|
|
}
|
|
|
|
public function transform($value)
|
|
{
|
|
if (is_int($value)) {
|
|
return $value;
|
|
}
|
|
|
|
if (is_string($value)) {
|
|
return (int) $value;
|
|
}
|
|
}
|
|
}
|