Thomas Gelf 81c6920b93 ShipConfigFilesHook: new hook
Allows other modules to ship additional files to/through Icinga 2.
2015-10-15 20:32:15 +02:00

12 lines
159 B
PHP

<?php
namespace Icinga\Module\Director\Web\Hook;
abstract class ShipConfigFilesHook
{
public function fetchFiles()
{
return array();
}
}