Thomas Gelf 7b65efee23 Hooks: get rid of legacy pre 2.1 hook classes
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.
2016-02-17 10:49:57 +01:00

12 lines
155 B
PHP

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