Update hook php doc - refs BT#9092 #hook

1.10.x
Daniel Barreto 11 years ago
parent 27dd9ce192
commit fd48fe3079
  1. 2
      main/inc/lib/hook/HookEvent.php
  2. 2
      main/inc/lib/hook/HookObserver.php
  3. 2
      main/inc/lib/hook/interfaces/base/HookEventInterface.php
  4. 2
      main/inc/lib/hook/interfaces/base/HookObserverInterface.php

@ -36,7 +36,7 @@ abstract class HookEvent implements HookEventInterface
/**
* Return the singleton instance of Hook event.
* @return HookEventInterface|null
* @return static
*/
public static function create()
{

@ -34,7 +34,7 @@ abstract class HookObserver implements HookObserverInterface
/**
* Return the singleton instance of Hook observer.
* If Hook Management plugin is not enabled, will return NULL
* @return HookEventInterface|null
* @return static|null
*/
public static function create()
{

@ -33,7 +33,7 @@ interface HookEventInterface
/**
* Return the singleton instance of Hook event.
* @return HookEventInterface|null
* @return static|null
*/
public static function create();

@ -10,7 +10,7 @@ interface HookObserverInterface
{
/**
* Return the singleton instance of Hook observer.
* @return HookEventInterface|null
* @return static|null
*/
public static function create();

Loading…
Cancel
Save