mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-13 00:44:25 +02:00
14 lines
264 B
PHP
14 lines
264 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\PropertyModifier;
|
|
|
|
use Icinga\Module\Director\Hook\PropertyModifierHook;
|
|
|
|
class PropertyModifierLowercase extends PropertyModifierHook
|
|
{
|
|
public function transform($value)
|
|
{
|
|
return strtolower($value);
|
|
}
|
|
}
|