mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-05-28 04:35:53 -04:00
18 lines
279 B
PHP
18 lines
279 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
interface ObjectWithArguments
|
|
{
|
|
/**
|
|
* @return boolean
|
|
*/
|
|
public function gotArguments();
|
|
|
|
/**
|
|
* @return IcingaArguments
|
|
*/
|
|
public function arguments();
|
|
|
|
public function unsetArguments();
|
|
}
|