mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-19 23:32:17 +02:00
N°2760 Abstract classes for extension API interfaces : remove return; for @return void methods
This commit is contained in:
@@ -426,7 +426,6 @@ abstract class AbstractApplicationUIExtension implements iApplicationUIExtension
|
|||||||
*/
|
*/
|
||||||
public function OnDisplayProperties($oObject, WebPage $oPage, $bEditMode = false)
|
public function OnDisplayProperties($oObject, WebPage $oPage, $bEditMode = false)
|
||||||
{
|
{
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -434,7 +433,6 @@ abstract class AbstractApplicationUIExtension implements iApplicationUIExtension
|
|||||||
*/
|
*/
|
||||||
public function OnDisplayRelations($oObject, WebPage $oPage, $bEditMode = false)
|
public function OnDisplayRelations($oObject, WebPage $oPage, $bEditMode = false)
|
||||||
{
|
{
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -442,7 +440,6 @@ abstract class AbstractApplicationUIExtension implements iApplicationUIExtension
|
|||||||
*/
|
*/
|
||||||
public function OnFormSubmit($oObject, $sFormPrefix = '')
|
public function OnFormSubmit($oObject, $sFormPrefix = '')
|
||||||
{
|
{
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -450,7 +447,6 @@ abstract class AbstractApplicationUIExtension implements iApplicationUIExtension
|
|||||||
*/
|
*/
|
||||||
public function OnFormCancel($sTempId)
|
public function OnFormCancel($sTempId)
|
||||||
{
|
{
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -622,7 +618,6 @@ abstract class AbstractApplicationObjectExtension implements iApplicationObjectE
|
|||||||
*/
|
*/
|
||||||
public function OnDBUpdate($oObject, $oChange = null)
|
public function OnDBUpdate($oObject, $oChange = null)
|
||||||
{
|
{
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -630,7 +625,6 @@ abstract class AbstractApplicationObjectExtension implements iApplicationObjectE
|
|||||||
*/
|
*/
|
||||||
public function OnDBInsert($oObject, $oChange = null)
|
public function OnDBInsert($oObject, $oChange = null)
|
||||||
{
|
{
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -638,7 +632,6 @@ abstract class AbstractApplicationObjectExtension implements iApplicationObjectE
|
|||||||
*/
|
*/
|
||||||
public function OnDBDelete($oObject, $oChange = null)
|
public function OnDBDelete($oObject, $oChange = null)
|
||||||
{
|
{
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user