15 lines
227 B
PHP
15 lines
227 B
PHP
|
<?php
|
||
|
|
||
|
namespace Icinga\Web;
|
||
|
|
||
|
use Icinga\Application\Hook as NewHookImplementation;
|
||
|
|
||
|
/**
|
||
|
* Icinga Web Hook registry
|
||
|
*
|
||
|
* Deprecated, please use Icinga\Application\Hook instead
|
||
|
*/
|
||
|
class Hook extends NewHookImplementation
|
||
|
{
|
||
|
}
|