15 lines
256 B
PHP
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;
|
||
|
}
|
||
|
}
|