mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-12 16:34:26 +02:00
In case you already implemented such you have to adjust your implementations. Just replace Director/Web/Hook with Director/Hook. Sorry for the inconvenience. Compat classes would have been possible, but as Director isn't stable yet I'd like to avoid doing so.
12 lines
155 B
PHP
12 lines
155 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Hook;
|
|
|
|
abstract class ShipConfigFilesHook
|
|
{
|
|
public function fetchFiles()
|
|
{
|
|
return array();
|
|
}
|
|
}
|