2018-10-25 08:21:58 +02:00

15 lines
256 B
PHP

<?php
namespace Icinga\Module\Director\Objects;
class DynamicApplyMatches extends ObjectApplyMatches
{
protected static $type = '';
public static function setType($type)
{
static::$type = $type;
return static::$type;
}
}